import arcpy, os #Set file name and remove if it already exists pdfPath = r"C:\Project\ParcelAtlasMapBook.pdf" if os.path.exists(pdfPath): os.remove(pdfPath) #Create the file and append pages pdfDoc = arcpy.mapping.PDFDocumentCreate(pdfPath) pdfDoc.appendPages(r"C:\Project\Title.pdf") pdfDoc.appendPages(r"C:\Project\ParcelAtlas.pdf") #Commit changes and delete variable reference pdfDoc.saveAndClose() del pdfDoc
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.