You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>This library makes it possible to write PDF files directly from Processing. These vector graphics files can be scaled to any size and output at very high resolutions. There is also a contributed library for exporting images to SVG format; check the <ahref="http://www.processing.org/reference/libraries/">libraries</a> section of the website for more information. The PDF library can flatten 3D data into a 2D vector file, but to export 3D data, use the DXF library.<br/>
11
-
<br/>
12
-
This library is frequently used with the core Processing function <strong>size()</strong>, with a combination of <strong>beginRecord()</strong> and <strong>endRecord()</strong>, or with <strong>beginRaw()</strong> and <strong>endRaw()</strong>. The <strong>createGraphics()</strong> function can also be useful. See the examples below for different techniques.</p>
5
+
<p>The PDF library makes it possible to write PDF files directly from Processing. These vector graphics files can be scaled to any size and output at very high resolutions. The PDF library can flatten 3D data into a 2D vector file, but to export 3D data, use the DXF library.<br/>
6
+
<br/>
7
+
This library is frequently used with the core Processing function <strong>size()</strong>, with a combination of <strong>beginRecord()</strong> and <strong>endRecord()</strong>, or with <strong>beginRaw()</strong> and <strong>endRaw()</strong>. The <strong>createGraphics()</strong> function can also be useful. See the examples below for different techniques.</p>
13
8
</div>
14
9
15
10
<divclass="full">
@@ -267,11 +262,11 @@ <h3>PDF Export</h3>
267
262
268
263
<li>Starting in release 0120, text is no longer treated as shape data by
269
264
default, meaning that the font will need to be installed to view the
270
-
PDF that's created. The upside is that the PDF will render better
271
-
(particularly in light of the Mac OS X bug noted here). To force text
265
+
PDF that's created. The upside is that the PDF will render better. To force text
272
266
to be treated as shape data, use textMode(SHAPE), immediately after size().
273
-
See the developer reference for textMode() inside
274
-
<AHREF="http://dev.processing.org/reference/everything/javadoc/processing/pdf/PGraphicsPDF.html">PGraphicsPDF</A> for more specifics.
267
+
<!--See the developer reference for textMode() inside
0 commit comments