Files
doc-fr/reference/printer/functions/printer-create-dc.xml
Yannick Torres 7419a9d413 synch with EN Revision
git-svn-id: https://svn.php.net/repository/phpdoc/fr/trunk@157972 c90b9560-bf6c-de11-be94-00142212c4b1
2004-05-04 21:32:13 +00:00

75 lines
2.1 KiB
XML
Executable File

<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- EN-Revision: 1.4 Maintainer: yannick Status: ready -->
<refentry id="function.printer-create-dc">
<refnamediv>
<refname>printer_create_dc</refname>
<refpurpose>Crée un contexte d'imprimante</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>
<function>printer_create_dc</function> crée un nouveau contexte
d'imprimante pour l'imprimante <parameter>handle</parameter>.
Un contexte d'imprimante est utilisé pour paramétrer les
objets graphiques d'un document.
<parameter>handle</parameter> doit être une ressource d'imprimante valide.
</para>
<example>
<title>Exemple avec <function>printer_create_dc</function></title>
<programlisting role="php">
<![CDATA[
<?php
$handle = printer_open();
printer_start_doc($handle);
printer_start_page($handle);
printer_create_dc($handle);
/* Exploitation du contexte */
printer_set_option($handle, PRINTER_TEXT_COLOR, "333333");
printer_draw_text($handle, 1, 1, "text");
printer_delete_dc($handle);
/* Création d'un autre contexte */
printer_create_dc($handle);
printer_set_option($handle, PRINTER_TEXT_COLOR, "000000");
printer_draw_text($handle, 1, 1, "text");
/* Exploitation du contexte */
printer_delete_dc($handle);
printer_end_page($handle);
printer_end_doc($handle);
printer_close($handle);
?>
]]>
</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
-->