<p><br>
On Oct 1, 2011 1:12 PM, &quot;jaaf64&quot; &lt;<a href="mailto:jaaf.forums@zoraldia.com">jaaf.forums@zoraldia.com</a>&gt; wrote:<br>
&gt;<br>
&gt; hi,<br>
&gt; I am new to cairo and to graphics in general.<br>
&gt; I have trouble understanding the fact that PdfSurface or (PsSurface) is only 72 points per inch.<br>
&gt; Does this mean that I cannot benefit from the printer s&#39;capability (300 or 600 dpi per inch) ?<br>
&gt;</p>
<p>There&#39;s four different issues:</p>
<p>1: measuring distances. This is where 72 comes from. Initially a PdfSurface measures everything in points (1/72th of an inch or 0.3(?) mm). You can use more precise sizes by using floats or change the scale with ctx.scale().</p>

<p>2: Vector images. These are sent as-is to your printer or your printer driver. The RIP in the printer or the driver will determine the resolution of lines and text. You can use the same PDF for different devices.</p>
<p>3: images. Images are stored in their original resolution: scaling a 1000x1000 px image to 1x1 inch will lead to a portion of the PDF to be 1000ppi. Using the same image as 2x2 inch makes that part 500ppi.</p>
<p>4: fallback images. some operations in cairo can not be saved as simple PDF commands. Cairo generates images and saves them in the PDF file. The resolution of these images can be set with set_fallback_resolution() and are 300ppi by default.</p>

<p>Met vriendelijke groet,<br>
Arjen Nienhuis</p>
<div class="gmail_quote">On Oct 1, 2011 1:12 PM, &quot;jaaf64&quot; &lt;<a href="mailto:jaaf.forums@zoraldia.com" target="_blank">jaaf.forums@zoraldia.com</a>&gt; wrote:<br type="attribution">&gt; hi,<br>&gt; I am new to cairo and to graphics in general.<br>


&gt; I have trouble understanding the fact that PdfSurface or (PsSurface) is <br>&gt; only 72 points per inch.<br>&gt; Does this mean that I cannot benefit from the printer s&#39;capability (300 <br>&gt; or 600 dpi per inch) ?<br>


&gt; <br>&gt; --<br>&gt; cairo mailing list<br>&gt; <a href="mailto:cairo@cairographics.org" target="_blank">cairo@cairographics.org</a><br>&gt; <a href="http://lists.cairographics.org/mailman/listinfo/cairo" target="_blank">http://lists.cairographics.org/mailman/listinfo/cairo</a><br>


</div>