<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Print/Export Data Driven Pages to plot files in Mapping Questions</title>
    <link>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513725#M5495</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I imagine this is a post-SP2 fix?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 May 2011 15:51:06 GMT</pubDate>
    <dc:creator>deleted-user-ATjHIWsdQYmT</dc:creator>
    <dc:date>2011-05-10T15:51:06Z</dc:date>
    <item>
      <title>Print/Export Data Driven Pages to plot files</title>
      <link>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513720#M5490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm looking for a way to export out each Data Driven Page of a map document to a Plot file (.PRN).&amp;nbsp; I don't want to send them all to the printer at once.&amp;nbsp; I'd like to be able to write them out to plot files (.PRN) and send them as needed.&amp;nbsp; I imagine this could be done via Python but I'm not to versed in it.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help would be appreciated.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Mar 2011 11:39:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513720#M5490</guid>
      <dc:creator>deleted-user-ATjHIWsdQYmT</dc:creator>
      <dc:date>2011-03-15T11:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: Print/Export Data Driven Pages to plot files</title>
      <link>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513721#M5491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;OK, I've muddled my way through Python and have written some code to export out each page as a PRN.&amp;nbsp; New Problem:&amp;nbsp; the files are HUGE!&amp;nbsp; If I write out just one page using file--&amp;gt;print (check box print to file) I get a 65MB file.&amp;nbsp; Using arcpy (code below) my PRN is over 200MB. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can't see a way to set printer parameters.&amp;nbsp; am I missing something?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; FYI - there is an ortho overlaid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
import arcpy
MxdPath = arcpy.GetParameterAsText(0)
OutPath = arcpy.GetParameterAsText(1)
PrinterPath = arcpy.GetParameterAsText(2)

mxd = arcpy.mapping.MapDocument(MxdPath)
arcpy.SetProgressor("default","Exporting Data Driven Page to Plotfile...")
arcpy.SetProgressor("step","",0,mxd.dataDrivenPages.pageCount,1)
for pageNum in range(1, mxd.dataDrivenPages.pageCount + 1):
&amp;nbsp;&amp;nbsp;&amp;nbsp; mxd.dataDrivenPages.currentPageID = pageNum
&amp;nbsp;&amp;nbsp;&amp;nbsp; pageName = mxd.dataDrivenPages.pageRow.SORTMAPNUM
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SetProgressorLabel("Exporting page {0} of {1}".format(str(mxd.dataDrivenPages.currentPageID), str(mxd.dataDrivenPages.pageCount)))
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SetProgressorPosition(mxd.dataDrivenPages.currentPageID)
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage("Writing File: " + OutPath + "\\"&amp;nbsp; + str(pageName) + ".prn")
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.PrintMap(mxd,PrinterPath,"PAGE_LAYOUT",OutPath + "\\"&amp;nbsp; + str(pageName) + ".prn")

del mxd



&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:27:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513721#M5491</guid>
      <dc:creator>deleted-user-ATjHIWsdQYmT</dc:creator>
      <dc:date>2021-12-11T22:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: Print/Export Data Driven Pages to plot files</title>
      <link>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513722#M5492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We reproduced this bug an will hopefully be able to address it in the next service pack.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to check its status, it is: NIM067146&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2011 15:38:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513722#M5492</guid>
      <dc:creator>JeffBarrette</dc:creator>
      <dc:date>2011-04-15T15:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Print/Export Data Driven Pages to plot files</title>
      <link>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513723#M5493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I contacted Tech Support after I posted this and they logged this as a bug.&amp;nbsp; They logged it as: NIM066026.&amp;nbsp; Perhaps these two NIM's should be combined.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Apr 2011 11:15:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513723#M5493</guid>
      <dc:creator>deleted-user-ATjHIWsdQYmT</dc:creator>
      <dc:date>2011-04-18T11:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Print/Export Data Driven Pages to plot files</title>
      <link>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513724#M5494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We addressed this issue.&amp;nbsp; Arcpy.mapping was always using BEST for image quality therefore the image sizes were always larger.&amp;nbsp; We've exposed a new {image_quality} parameter to the PrintMap function.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2011 15:40:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513724#M5494</guid>
      <dc:creator>JeffBarrette</dc:creator>
      <dc:date>2011-05-10T15:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: Print/Export Data Driven Pages to plot files</title>
      <link>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513725#M5495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I imagine this is a post-SP2 fix?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2011 15:51:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513725#M5495</guid>
      <dc:creator>deleted-user-ATjHIWsdQYmT</dc:creator>
      <dc:date>2011-05-10T15:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Print/Export Data Driven Pages to plot files</title>
      <link>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513726#M5496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes.&amp;nbsp; The fix was just verified.&amp;nbsp; It is marked to go into SP3.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2011 16:56:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/print-export-data-driven-pages-to-plot-files/m-p/513726#M5496</guid>
      <dc:creator>JeffBarrette</dc:creator>
      <dc:date>2011-05-10T16:56:04Z</dc:date>
    </item>
  </channel>
</rss>

