<?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: Control PDF resolution while saving a journal as PDF in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/453288#M70024</link>
    <description>&lt;P&gt;It does make it smaller sometimes. I think it depends on the type of graph and the type of data if it gets smaller or not. Two pdfs attached...zooming in reveals 'after' is a bitmap that looks blocky and 'before' is some sort of scalable vector representation that holds up well. After is a little more than 1/3 the size of before. I used 9999 random points.&lt;/P&gt;
&lt;P&gt;Some graphs will get larger when converted to pictures. I think you can expect ~500KB per picture based on this example, which probably does what you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 22 Jan 2022 18:36:32 GMT</pubDate>
    <dc:creator>Craige_Hales</dc:creator>
    <dc:date>2022-01-22T18:36:32Z</dc:date>
    <item>
      <title>Control PDF resolution while saving a journal as PDF</title>
      <link>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/452901#M69977</link>
      <description>&lt;P&gt;I create JMP journal based reports which I then save as PDF for sharing. The saved PDF sizes are currently typically &amp;gt;20MB. I am wondering if it is possible to control (in my JSL script for saving) the resolution of the graphics so as to bring the sizes of PDF reports below 10MB? If yes, could I please get an example?&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:21:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/452901#M69977</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-06-11T11:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: Control PDF resolution while saving a journal as PDF</title>
      <link>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/452917#M69978</link>
      <description>&lt;P&gt;Without actually trying it, 20 MB seems reasonable for 20 graphs. How many graphs have you put in the PDF?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ideas (no promises!)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) I'm assuming the PDF has a graph with a lot of data points, and &lt;EM&gt;maybe&lt;/EM&gt; the graph is kept as a vector object (for scaling) in the PDF rather than an image. Then this might help (by making only a picture available when the PDF is generated):&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="Search JMP help for &amp;quot;freeze&amp;quot;" style="width: 857px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/39151iCD11A6732FC82B5F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Search JMP help for &amp;quot;freeze&amp;quot;" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Search JMP help for "freeze"&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) (less likely to be applicable) In the Windows prefs there are options for RTF and HTML picture formats. JPG might be smaller than PNG. I don't know if they would apply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3) I think there may be more than one way to get a PDF from JMP, using different converters. &amp;lt;&amp;lt;savePDF vs some print driver that you might have. Not sure how you'd control the print driver's file location, but it might tell you what &lt;EM&gt;could&lt;/EM&gt; be possible.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4) Not sure how the &amp;lt;&amp;lt;savePDF deals with closed outlines, but try closing/hiding/deleting sections you don't need to keep.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jan 2022 13:03:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/452917#M69978</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2022-01-21T13:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Control PDF resolution while saving a journal as PDF</title>
      <link>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/452990#M69979</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/982"&gt;@Craige_Hales&lt;/a&gt;&amp;nbsp;for your inputs. Yes, there are about 21 graphs which make up about 23MB of PDF file size and each graph has lots of points (half of them are heatmaps). Below is the script/function I use for saving the PDF (also saves the data file in specified format).&lt;/P&gt;&lt;P&gt;Could I please get some direction/examples on how to use/check the four options you mention above?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here (1) ;

saveDataAndJournalFile = Function({partID, path, fileFormat}, {},

dt = current data table ();
dt &amp;lt;&amp;lt; save as ( path || "\" || ""||partID||""||fileFormat||"" );
currJournal = Current Journal();
currJournal &amp;lt;&amp;lt; set page setup(margins( 0.5, 0.5, 0.5, 0.5 ), scale( 0.55 ), portrait( 0 ), paper size( "A3" ));
currJournal &amp;lt;&amp;lt; get page setup();
currJournal &amp;lt;&amp;lt; Save PDF ( path || "\" || "Report for "||partID||".pdf" );

return();
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Do the four options you mention apply at the point of creating the journal or post creation of the final journal ready to be saved in chosen format (PDF in this case)?&lt;/P&gt;&lt;P&gt;(I may not be able to deal with the situation in a easy manner if it is the former)&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jan 2022 15:34:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/452990#M69979</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2022-01-21T15:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: Control PDF resolution while saving a journal as PDF</title>
      <link>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/453047#M69981</link>
      <description>&lt;P&gt;In a perfect world, you would do it when making the journal, but it isn't too late!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;x=currentjournal();
boxes = x&amp;lt;&amp;lt;clonebox;
x&amp;lt;&amp;lt;closewindow;
boxes&amp;lt;&amp;lt;journal("freeze frames");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Above captures the displayboxes out of the old journal and makes a new one. You should experiment with the freeze frames vs freeze pictures because they have different behaviors. freeze pictures grabs a bigger chunk of the display box tree, which may have issues spanning pages. freeze frames grabs just inside the axis, and may leave the journal (but not the pdf) in a situation where the axes move independently of the content.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jan 2022 16:19:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/453047#M69981</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2022-01-21T16:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Control PDF resolution while saving a journal as PDF</title>
      <link>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/453048#M69982</link>
      <description>&lt;P&gt;If this works for you, you get to decide how big the graphs in the old journal are before you capture a picture, which will determine the picture's data storage size...&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jan 2022 16:21:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/453048#M69982</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2022-01-21T16:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: Control PDF resolution while saving a journal as PDF</title>
      <link>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/453288#M70024</link>
      <description>&lt;P&gt;It does make it smaller sometimes. I think it depends on the type of graph and the type of data if it gets smaller or not. Two pdfs attached...zooming in reveals 'after' is a bitmap that looks blocky and 'before' is some sort of scalable vector representation that holds up well. After is a little more than 1/3 the size of before. I used 9999 random points.&lt;/P&gt;
&lt;P&gt;Some graphs will get larger when converted to pictures. I think you can expect ~500KB per picture based on this example, which probably does what you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jan 2022 18:36:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/453288#M70024</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2022-01-22T18:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: Control PDF resolution while saving a journal as PDF</title>
      <link>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/866016#M102903</link>
      <description>&lt;P&gt;I was looking for a thread like this. Thanks for the advice. It helped me too.&lt;/P&gt;</description>
      <pubDate>Sat, 05 Apr 2025 13:51:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/866016#M102903</guid>
      <dc:creator>taketootom</dc:creator>
      <dc:date>2025-04-05T13:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: Control PDF resolution while saving a journal as PDF</title>
      <link>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/867487#M103021</link>
      <description>&lt;P&gt;Yes, you can control the resolution using the Save Journal function in JSL. Try adding the PDF Resolution(150) argument—lowering it helps a lot. If you're working on anything for a &lt;A href="https://www.urlaunched.com/industries/fintech-app-development-services" target="_self"&gt;fintech app development firm&lt;/A&gt;, keeping files lightweight is a must.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2025 09:53:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Control-PDF-resolution-while-saving-a-journal-as-PDF/m-p/867487#M103021</guid>
      <dc:creator>OStebbins</dc:creator>
      <dc:date>2025-04-14T09:53:59Z</dc:date>
    </item>
  </channel>
</rss>

