<?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: How to set plot PDF font 'capture' option with AutoLISP? in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12279594#M23472</link>
    <description>&lt;P&gt;You were able to produce the good pdf because as I had replied in my previous post as long as your plot device pdf options is set to capture then you’ll succeed. Those other settings&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;&amp;nbsp;mentioned will only appear in the registry if you used at least once the ExportPDF command and made changes to the pdf options under that window. Again currently there’s no Autolisp method to set the pdf options within a printer device. &amp;nbsp;This requires user input which is what you did as the first step before running your lisp. Now another possible workaround would be to use&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;&amp;nbsp;method to set the exportpdf pdf options and run the -Export command line version to generate a pdf. But you’ll lose the center option since export doesn’t have this option. A workaround for that would require you to setup everything exactly as you want in a layout then you would not require centering. Let me know if you want to try out that lisp option&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 02 Oct 2023 14:49:44 GMT</pubDate>
    <dc:creator>paullimapa</dc:creator>
    <dc:date>2023-10-02T14:49:44Z</dc:date>
    <item>
      <title>How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276090#M23459</link>
      <description>&lt;P&gt;Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know how to programmatically set the option to "Capture fonts used in the drawing" for PDF files?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JBerns_0-1696017776813.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1273692iA7DE2C7CD84268E8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JBerns_0-1696017776813.png" alt="JBerns_0-1696017776813.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a LISP routine that creates a DXF and a PDF from a DWG.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;;; PLOT TO PDF

;; plot settings
(setq
    strOutDev	 "AutoCAD PDF (Smallest File).pc3"
    strPaperSize "ANSI A (8.50 x 11.00 Inches)"
    strPlotRot	 "Landscape"
    strPlotStyle "Monochrome"
    strFileName	 (strcat (getvar 'dwgprefix) (vl-filename-base (getvar 'dwgname)))
) ;_setq

;; set PDF filename
(setq strFileName (strcat (vl-filename-directory a)	;; then build filename without extension
		     "\\"
		     (vl-filename-base a)
		  )
) ;_setq

;; Perform a detailed plot configuration
(command "_.PLOT" "Y")

;; Detail answers
(command "Model"					;;Enter a layout name
	 strOutDev					;;Enter an output device name
	 strPaperSize					;;Enter paper size
	 "I"						;;Enter paper units
	 strPlotRot					;;Enter drawing orientation
	 "N"						;;Plot upside down
	 "D"						;;Enter plot area, Display
	 "F"						;;Enter plot scale or[Fit]
	 "C"						;;Enter plot offset or [Center]
	 "Y"						;;Plot with plot styles
	 strPlotStyle					;;Plot style
	 "N"						;;Plot lineweights
	 "A"						;;Enter shade plot setting
	 (strcat strFileName ".PDF")			;;Write plot to file
	 "N"						;;Save change to page setup
	 "Y"						;;Proceed
) ;_command&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When plotted with the LISP routine, certain fonts do not display well in Adobe products. In our, case it is Calibri and certain symbols such as the diameter symbol.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JBerns_1-1696018032184.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1273696iF0A41F81C074AD9E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JBerns_1-1696018032184.png" alt="JBerns_1-1696018032184.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This apparently is a known issue:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.autodesk.com/support/technical/article/caas/sfdcarticles/sfdcarticles/Font-error-displays-in-Adobe-Reader-when-opening-a-PDF-created-in-AutoCAD.html" target="_blank" rel="noopener"&gt;https://www.autodesk.com/support/technical/article/caas/sfdcarticles/sfdcarticles/Font-error-displays-in-Adobe-Reader-when-opening-a-PDF-created-in-AutoCAD.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.autodesk.com/support/technical/article/caas/sfdcarticles/sfdcarticles/When-plotting-to-PDF-specific-texts-font-and-alignment-plot-incorrectly-when-using-custom-TrueType-fon.html" target="_blank" rel="noopener"&gt;https://www.autodesk.com/support/technical/article/caas/sfdcarticles/sfdcarticles/When-plotting-to-PDF-specific-texts-font-and-alignment-plot-incorrectly-when-using-custom-TrueType-fon.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When plotted with the PLOT dialog box, the fonts are included and appear correct when viewed in Adobe products.&lt;/P&gt;&lt;P&gt;When plotted with AutoLISP, the "capture" option seems to be ignored.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope to find a way to set the "capture" option when plotting with AutoLISP. Perhaps Visual LISP can access these settings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your time and attention. I look forward to your replies.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Jerry&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 20:16:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276090#M23459</guid>
      <dc:creator>JBerns</dc:creator>
      <dc:date>2023-09-29T20:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276185#M23460</link>
      <description>&lt;P&gt;Your screen capture shows plot device as Dwg To Pdf.pc3&lt;/P&gt;&lt;P&gt;But your lisp code shows&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;strOutDev	 "AutoCAD PDF (Smallest File).pc3"&lt;/PRE&gt;&lt;P&gt;Have you tried changing your code to use the same?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 21:16:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276185#M23460</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-09-29T21:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276228#M23461</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1137264"&gt;@paullimapa&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the quick reply.&lt;/P&gt;&lt;P&gt;I had been trying the different PDF output devices that I may have pasted the wrong code.&lt;/P&gt;&lt;P&gt;Can the capture option be set with code during plotting?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jerry&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 21:43:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276228#M23461</guid>
      <dc:creator>JBerns</dc:creator>
      <dc:date>2023-09-29T21:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276237#M23462</link>
      <description>&lt;P&gt;Also, I performed a detailed plot operation from the command prompt using 'DWG to PDF'. No prompt appeared asking about capturing fonts.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 21:51:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276237#M23462</guid>
      <dc:creator>JBerns</dc:creator>
      <dc:date>2023-09-29T21:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276255#M23463</link>
      <description>&lt;P&gt;I’m not aware of an option to set that with code which is why it needs to be done first and then the matching pc3 used to plot&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 22:05:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276255#M23463</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-09-29T22:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276271#M23464</link>
      <description>&lt;P&gt;So when switching to a different printer, the user will have to manually set the option before they can plot with the LISP routine?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am very curious how AutoCAD change the option through the interface, but not with code.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 22:27:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276271#M23464</guid>
      <dc:creator>JBerns</dc:creator>
      <dc:date>2023-09-29T22:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276285#M23465</link>
      <description>&lt;P&gt;Yep all custom printer settings like page size, lines merge or overwrite and in your case fonts need to be already set in the pc3&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 22:35:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276285#M23465</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-09-29T22:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276349#M23466</link>
      <description>&lt;P&gt;Thanks, Paul.&lt;/P&gt;&lt;P&gt;I will try some tests next week.&lt;/P&gt;&lt;P&gt;Have a great weekend.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jerry&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 23:47:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12276349#M23466</guid>
      <dc:creator>JBerns</dc:creator>
      <dc:date>2023-09-29T23:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12277036#M23467</link>
      <description>&lt;P&gt;It's stored in Registry&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HKEY_CURRENT_USER\SOFTWARE\Autodesk\AutoCAD\R23.1\ACAD-3000:409\Profiles\YourProfileName\Dialogs\AcQuickPublishOpts\CaptureFontsInDrawing&lt;/P&gt;</description>
      <pubDate>Sat, 30 Sep 2023 16:07:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12277036#M23467</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2023-09-30T16:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12277092#M23468</link>
      <description>&lt;P&gt;That registry entry is referring to the &lt;STRONG&gt;PUBLISH&lt;/STRONG&gt;&amp;nbsp;&lt;STRONG&gt;Options&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paullimapa_0-1696094269222.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1273816i5E3F68B008313B08/image-size/medium?v=v2&amp;amp;px=400" role="button" title="paullimapa_0-1696094269222.png" alt="paullimapa_0-1696094269222.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But the OP is referring to the various printer/plotter &lt;STRONG&gt;*.pc3 device options&lt;/STRONG&gt; located in the &lt;STRONG&gt;PLOT&amp;nbsp;PDF Options&lt;/STRONG&gt; window which are not related when running plot sequence using lisp:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paullimapa_1-1696094389465.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1273817i74A523F41F03B782/image-size/medium?v=v2&amp;amp;px=400" role="button" title="paullimapa_1-1696094389465.png" alt="paullimapa_1-1696094389465.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Sep 2023 17:20:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12277092#M23468</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-09-30T17:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12277120#M23469</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1137264"&gt;@paullimapa&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You're right that it does not apply to the plot devices. Unfortunatelly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just to be accurate, there are actually two keys of the same name. Your screenshots referred to the other one. It's&amp;nbsp;AcPublishDlg.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My&amp;nbsp;&lt;SPAN&gt;AcQuickPublishOpts&lt;/SPAN&gt; refers to this tool.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="eekeeCZ_0-1696096461185.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1273820iFEB6384F060CB138/image-size/medium?v=v2&amp;amp;px=400" role="button" title="eekeeCZ_0-1696096461185.png" alt="eekeeCZ_0-1696096461185.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Sep 2023 18:36:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12277120#M23469</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2023-09-30T18:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12277137#M23470</link>
      <description>&lt;P&gt;Got it. Thanks for the clarification. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Sep 2023 18:16:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12277137#M23470</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-09-30T18:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12279573#M23471</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;&amp;nbsp;/&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1137264"&gt;@paullimapa&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I verified that the 'Capture" option was enabled in the PLOT dialog.&lt;/P&gt;&lt;P&gt;I plotted from the dialog and obtained a good PDF with readable dimensions using the Calibri font.&lt;/P&gt;&lt;P&gt;I then plotted from the command line and produced a similar PDF.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I closed AutoCAD and then searched the system registry for both "AcQuickPublishOpts" and "CaptureFontsInDrawing".&lt;/P&gt;&lt;P&gt;Neither of these could be found.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not sure how I was able to produce a good PDF using the command line if these registry settings are not available.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Reminder, there is no question about font capturing when doing a detailed plot from the command line.&lt;/P&gt;&lt;P&gt;Thoughts or suggestions to ensure fonts are captured when producing PDFs from the command line?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jerry&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 14:37:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12279573#M23471</guid>
      <dc:creator>JBerns</dc:creator>
      <dc:date>2023-10-02T14:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12279594#M23472</link>
      <description>&lt;P&gt;You were able to produce the good pdf because as I had replied in my previous post as long as your plot device pdf options is set to capture then you’ll succeed. Those other settings&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;&amp;nbsp;mentioned will only appear in the registry if you used at least once the ExportPDF command and made changes to the pdf options under that window. Again currently there’s no Autolisp method to set the pdf options within a printer device. &amp;nbsp;This requires user input which is what you did as the first step before running your lisp. Now another possible workaround would be to use&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;&amp;nbsp;method to set the exportpdf pdf options and run the -Export command line version to generate a pdf. But you’ll lose the center option since export doesn’t have this option. A workaround for that would require you to setup everything exactly as you want in a layout then you would not require centering. Let me know if you want to try out that lisp option&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 14:49:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12279594#M23472</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-10-02T14:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12279677#M23473</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1137264"&gt;@paullimapa&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Acknowledged. Thanks for clarifying.&lt;/P&gt;&lt;P&gt;We keep our PC3 files in a shared server folder, so as long as no user makes any changes, we should have this issue resolved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was hoping that I might be assured the font capture option was set each time before plotting, but seems to be difficult from an AutoLISP perspective.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We shall proceed and hope the PDF files will continue to capture fonts to ensure readable dimensions.&lt;/P&gt;&lt;P&gt;Thanks again, Paul.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jerry&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 15:20:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12279677#M23473</guid>
      <dc:creator>JBerns</dc:creator>
      <dc:date>2023-10-02T15:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12279683#M23474</link>
      <description>&lt;P&gt;glad to have helped...cheers!!!&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 15:22:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12279683#M23474</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-10-02T15:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to set plot PDF font 'capture' option with AutoLISP?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12500319#M23475</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In AutoLISP, you can control plot settings using the setenv function to set system variables. For PDF plotting, you might want to consider the PLOTCONFIG system variable. Here's an example of how you might use AutoLISP to set the 'capture' option for PDF plotting:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;lisp&lt;/SPAN&gt;&lt;SPAN class=""&gt;Copy code&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;(defun set-pdf-plot-capture () (setenv "PLOTCONFIG" "PDF.pc3") (setenv "PLOTOPTIONS" "Capture") ) (set-pdf-plot-capture)&lt;/DIV&gt;&lt;/DIV&gt;&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;This example assumes that "PDF.pc3" is the plot configuration file you want to use, and "Capture" is the desired option for the 'capture' setting.&lt;/P&gt;&lt;P&gt;However, please note that the availability of specific options and system variables may vary depending on the AutoCAD version and the specific requirements of your project.&lt;/P&gt;&lt;P&gt;As for the additional keyword you provided, "&lt;A href="https://pdfdownload.pk/" target="_blank" rel="noopener"&gt;Download Islamic PDF Books&lt;/A&gt;," please note that I can't assist with any requests or actions related to downloading copyrighted materials or any content that violates ethical or legal standards. If you have any non-infringing questions or need further clarification, feel free to ask.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jan 2024 19:48:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-plot-pdf-font-capture-option-with-autolisp/m-p/12500319#M23475</guid>
      <dc:creator>rajoy61023</dc:creator>
      <dc:date>2024-01-16T19:48:25Z</dc:date>
    </item>
  </channel>
</rss>

