2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2003-08-06 08:10:32 +00:00
|
|
|
<!-- $Revision: 1.4 $ -->
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- splitted from ./en/functions/printer.xml, last change in rev 1.6 -->
|
|
|
|
<refentry id="function.printer-create-dc">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>printer_create_dc</refname>
|
|
|
|
<refpurpose>Create a new device context</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
|
|
|
<methodsynopsis>
|
|
|
|
<type>void</type><methodname>printer_create_dc</methodname>
|
|
|
|
<methodparam><type>resource</type><parameter>handle</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
The function creates a new device context. A device context is used
|
|
|
|
to customize the graphic objects of the document.
|
|
|
|
<parameter>handle</parameter> must be a valid handle to a printer.
|
|
|
|
</para>
|
|
|
|
<example>
|
|
|
|
<title><function>printer_create_dc</function> example</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
2003-07-16 17:25:02 +00:00
|
|
|
<?php
|
2002-04-15 00:12:54 +00:00
|
|
|
$handle = printer_open();
|
|
|
|
printer_start_doc($handle);
|
|
|
|
printer_start_page($handle);
|
|
|
|
|
|
|
|
printer_create_dc($handle);
|
|
|
|
/* do some stuff with the dc */
|
|
|
|
printer_set_option($handle, PRINTER_TEXT_COLOR, "333333");
|
|
|
|
printer_draw_text($handle, 1, 1, "text");
|
|
|
|
printer_delete_dc($handle);
|
|
|
|
|
|
|
|
/* create another dc */
|
|
|
|
printer_create_dc($handle);
|
|
|
|
printer_set_option($handle, PRINTER_TEXT_COLOR, "000000");
|
|
|
|
printer_draw_text($handle, 1, 1, "text");
|
|
|
|
/* do some stuff with the dc */
|
|
|
|
|
|
|
|
printer_delete_dc($handle);
|
|
|
|
|
2003-08-06 08:10:32 +00:00
|
|
|
printer_end_page($handle);
|
2002-04-15 00:12:54 +00:00
|
|
|
printer_end_doc($handle);
|
|
|
|
printer_close($handle);
|
2003-07-16 17:25:02 +00:00
|
|
|
?>
|
2002-04-15 00:12:54 +00:00
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
2003-08-06 08:10:32 +00:00
|
|
|
-->
|