mirror of
https://github.com/php/doc-de.git
synced 2026-03-29 10:42:12 +02:00
git-svn-id: https://svn.php.net/repository/phpdoc/de/trunk@172634 c90b9560-bf6c-de11-be94-00142212c4b1
75 lines
2.1 KiB
XML
75 lines
2.1 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.1 $ -->
|
|
<!-- EN-Revision: 1.4 -->
|
|
<!-- 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>Erstellt einen Gerätekontext</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Beschreibung</title>
|
|
<methodsynopsis>
|
|
<type>void</type><methodname>printer_create_dc</methodname>
|
|
<methodparam><type>resource</type><parameter>handle</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Diese Funktion erstellt einen neuen Gerätekontext (device context). Ein
|
|
Gerätekontext wird verwendet um die graphischen Elemente eines
|
|
Dokumentes anzupassen.
|
|
<parameter>handle</parameter> muss ein gültiger Druckerhandler sein.
|
|
</para>
|
|
<example>
|
|
<title><function>printer_create_dc</function> Beispiel</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$handle = printer_open();
|
|
printer_start_doc($handle);
|
|
printer_start_page($handle);
|
|
|
|
/* erstellen eines Gerätekontexts */
|
|
printer_create_dc($handle);
|
|
/* ein paar Verwendungen des Gerätekontexts */
|
|
printer_set_option($handle, PRINTER_TEXT_COLOR, "333333");
|
|
printer_draw_text($handle, 1, 1, "text");
|
|
/* löschen des Gerätekontexts */
|
|
printer_delete_dc($handle);
|
|
|
|
/* erstellen eines weiteren Gerätekontexts */
|
|
printer_create_dc($handle);
|
|
printer_set_option($handle, PRINTER_TEXT_COLOR, "000000");
|
|
printer_draw_text($handle, 1, 1, "text");
|
|
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
|
|
-->
|