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
サインインしたメンバーは投稿、更新のフォローなどができます。初めてですか?無料アカウントを登録してください。
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.