mirror of
https://github.com/macintoshplus/doc-fr.git
synced 2026-03-29 04:12:21 +02:00
git-svn-id: https://svn.php.net/repository/phpdoc/fr/trunk@256137 c90b9560-bf6c-de11-be94-00142212c4b1
105 lines
2.5 KiB
XML
Executable File
105 lines
2.5 KiB
XML
Executable File
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.9 $ -->
|
|
<!-- EN-Revision: 1.7 Maintainer: yannick Status: ready -->
|
|
<!-- Reviewed: yes -->
|
|
|
|
<refentry xml:id="function.printer-create-dc" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>printer_create_dc</refname>
|
|
<refpurpose>Crée un contexte d'imprimante</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>void</type><methodname>printer_create_dc</methodname>
|
|
<methodparam><type>resource</type><parameter>printer_handle</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
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.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>printer_handle</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
<parameter>printer_handle</parameter> doit être une ressource d'imprimante valide.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
&return.void;
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<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>
|
|
</para>
|
|
</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
|
|
--> |