1
0
mirror of https://github.com/php/doc-de.git synced 2026-04-29 01:43:20 +02:00
Files
archived-doc-de/reference/printer/functions/printer-select-font.xml
T
Carola 'Sammy' Kummert 69aa9939c0 cleanup inactive maintainer
git-svn-id: https://svn.php.net/repository/phpdoc/de/trunk@275277 c90b9560-bf6c-de11-be94-00142212c4b1
2009-02-06 11:27:09 +00:00

68 lines
2.0 KiB
XML

<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- EN-Revision: 1.3 Maintainer: nobody Status: ready -->
<refentry xml:id="function.printer-select-font" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>printer_select_font</refname>
<refpurpose>Wählt eine Schrift aus</refpurpose>
</refnamediv>
<refsect1>
<title>Beschreibung</title>
<methodsynopsis>
<type>void</type><methodname>printer_select_font</methodname>
<methodparam><type>resource</type><parameter>printer_handle</parameter></methodparam>
<methodparam><type>resource</type><parameter>font_handle</parameter></methodparam>
</methodsynopsis>
<para>
Die Funktion wählt eine Schrift um Text zu erstellen.
<parameter>printer_handle</parameter> muss ein gültiges Druckerhandler
sein. <parameter>font_handle</parameter> muss ein gültiger Schrifthandler
sein.
</para>
<example>
<title>
<function>printer_select_font</function> Beispiel
</title>
<programlisting role="php">
<![CDATA[
<?php
$handle = printer_open();
printer_start_doc($handle, "Mein Dokument");
printer_start_page($handle);
$schrift = printer_create_font("Arial", 148, 76, PRINTER_FW_MEDIUM, false, false, false, -50);
printer_select_font($handle, $schrift);
printer_draw_text($handle, "PHP ist cool", 40, 40);
printer_delete_font($schrift);
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
-->