diff options
Diffstat (limited to 'html/en/drv')
-rw-r--r-- | html/en/drv/pdf.html | 11 | ||||
-rw-r--r-- | html/en/drv/ps.html | 21 | ||||
-rw-r--r-- | html/en/drv/svg.html | 23 |
3 files changed, 36 insertions, 19 deletions
diff --git a/html/en/drv/pdf.html b/html/en/drv/pdf.html index 9198a38..379d43c 100644 --- a/html/en/drv/pdf.html +++ b/html/en/drv/pdf.html @@ -113,7 +113,7 @@ or in C<em> parameter "-o" is used, the horizontal and vertical values are switched.</p> <p>In Lua, it is necessary to call function <strong><font face="Courier">cdluapdf_open() </strong> </font>after a call to function <strong><font face="Courier">cdlua_open()</font></strong>, apart from linkediting with the "<strong><font face="Courier">cdluapdf</font></strong>" - library.</p> + library. This is not necessary if you do require"cdluapdf".</p> <h3>Behavior of Functions</h3> <h4>Control</h4> @@ -133,18 +133,9 @@ or in C<em> </ul> <h4>Attributes</h4> <ul> - <li><a href="../func/attributes.html#cdBackground"><font face="Courier"> - <strong> - Background</strong></font></a> does nothing, returns <font face="Courier">CD_WHITE</font>.</li> - <li><a href="../func/filled.html#cdBackOpacity"><font face="Courier"><strong> - BackOpacity</strong></font></a>: does nothing, returns <font face="Courier">CD_TRANSPARENT</font>.</li> <li><a href="../func/attributes.html#cdWriteMode"><font face="Courier"> <strong> WriteMode</strong></font></a>: does nothing, returns <font face="Courier">CD_REPLACE</font>.</li> - <li><a href="../func/filled.html#cdHatch"><font face="Courier"><strong>Hatch</strong></font></a>: - is always opaque.</li> - <li><a href="../func/filled.html#cdStipple"><font face="Courier"><strong> - Stipple</strong></font></a>: is always opaque.</li> <li><a href="../func/text.html#cdFont"><font face="Courier"><strong>Font</strong></font></a>: the old "System" font is mapped to the "Courier" font. For the PDF core fonts styles are added to the font name, for other fonts styles diff --git a/html/en/drv/ps.html b/html/en/drv/ps.html index 011e834..f27efb7 100644 --- a/html/en/drv/ps.html +++ b/html/en/drv/ps.html @@ -187,21 +187,24 @@ </ul> <h4>Exclusive Attributes</h4> <ul> - <li>"<strong><font face="Courier">POLYHOLE</font></strong>": defines the index of - the vertex where there is a hole in a - closed polygon. It will affect the next <strong>cdEnd</strong>. Can be called several times between - <strong>cdBegin</strong> and <strong>cdEnd</strong> to define holes. The value passed must - be a string containing an integer ("%d"). If the value of the attribute passed is NULL, all holes will no longer be - considered. When consulted returns the current number of holes ("%d"). It can have a maximum of 500 holes.</li> + <li>"<strong><font face="Courier">POLYHOLE</font></strong>": defines the index + of the vertex where there is a hole in a closed polygon. It will affect the + next <strong>cdEnd</strong>. Can be called several times between + <strong>cdBegin</strong> and <strong>cdEnd</strong> to define holes. The value + passed must be a string containing an integer ("%d"). If the value of the + attribute passed is NULL, all holes will no longer be considered. When + consulted returns the current number of holes ("%d"). It can have a maximum + of 500 holes.</li> </ul> <ul> <li>"<b><font face="Courier">CMD</font></b>": saves a string directly to the file. Allows adding PostScript commands to the file generated by the CD library. (set only)</li> </ul> <ul> - <li>"<b><font face="Courier">ROTATE</font></b>": allows the usage of 1 angle and 1 coordinate (x, y), that - define a global rotation transformation centered in the specified coordinate. Use 1 real and 2 integer values inside a - string ("%g %d %d" = angle x y).</li> + <li>"<b><font face="Courier">ROTATE</font></b>": allows the usage of 1 angle + and 1 coordinate (x, y), that define a global rotation transformation + centered in the specified coordinate. Use 1 real and 2 integer values inside + a string ("%g %d %d" = angle x y).</li> </ul> </body> diff --git a/html/en/drv/svg.html b/html/en/drv/svg.html index 14daf58..5bfb1f8 100644 --- a/html/en/drv/svg.html +++ b/html/en/drv/svg.html @@ -87,6 +87,29 @@ <li>All functions do nothing.</li> </dir> +<h4>Exclusive Attributes</h4> +<ul> + <li>"<b><font face="Courier">CMD</font></b>": saves a string directly to the file. Allows adding + SVG commands + to the file generated by the CD library. (set only)</li> +</ul> +<ul> + <li>"<b><font face="Courier">OPAQUE</font></b>": allows the usage of a global + opacity value. The value passed must be a string containing an integer + ("%d") [0=full transparent, 255=full opaque]. Use NULL to reset to the + default. Default: 255.</li> +</ul> +<ul> + <li><strong><span style="font-family: Courier">"HATCHBOXSIZE"</span></strong>: + defines the size of smallest hatch box pattern. This affects the spacing + between the hatch lines. The value passed must be a string containing an + integer ("%d"). If the value of the attribute passed is NULL, the value is + rest to the default. When consulted returns the current value ("%d"). Default: + "8".</li> +</ul> +<p> </p> +<p> </p> + </body> </html> |