mirror of
https://github.com/php/doc-ru.git
synced 2025-08-16 18:22:04 +00:00
141 lines
4.1 KiB
XML
141 lines
4.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: sergey Status: ready -->
|
||
<!-- Reviewed: no -->
|
||
<refentry xml:id="function.ps-begin-template" xmlns="http://docbook.org/ns/docbook">
|
||
<refnamediv>
|
||
<refname>ps_begin_template</refname>
|
||
<refpurpose>Начинает новый шаблон</refpurpose>
|
||
</refnamediv>
|
||
|
||
<refsect1 role="description">
|
||
&reftitle.description;
|
||
<methodsynopsis>
|
||
<type>int</type><methodname>ps_begin_template</methodname>
|
||
<methodparam><type>resource</type><parameter>psdoc</parameter></methodparam>
|
||
<methodparam><type>float</type><parameter>width</parameter></methodparam>
|
||
<methodparam><type>float</type><parameter>height</parameter></methodparam>
|
||
</methodsynopsis>
|
||
<para>
|
||
Начинает новый шаблон. На языке postscript шаблон называется формой.
|
||
Он создаётся аналогично узору, но используется как изображение.
|
||
Шаблоны часто используются для рисунков, которые размещаются в документе несколько раз,
|
||
например как логотип компании. В шаблоне можно использовать все функции рисования.
|
||
Шаблон не будет нарисован, пока он не будет размещён с помощью <function>ps_place_image</function>.
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="parameters">
|
||
&reftitle.parameters;
|
||
<para>
|
||
<variablelist>
|
||
<varlistentry>
|
||
<term><parameter>psdoc</parameter></term>
|
||
<listitem>
|
||
<para>
|
||
Идентификатор ресурса файла postscript,
|
||
возвращённый функцией <function>ps_new</function>.
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
<varlistentry>
|
||
<term><parameter>width</parameter></term>
|
||
<listitem>
|
||
<para>
|
||
Ширина шаблона в пикселях.
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
<varlistentry>
|
||
<term><parameter>height</parameter></term>
|
||
<listitem>
|
||
<para>
|
||
Высота шаблона в пикселях.
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
</variablelist>
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="returnvalues">
|
||
&reftitle.returnvalues;
|
||
<para>
|
||
&return.success;
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="examples">
|
||
&reftitle.examples;
|
||
<para>
|
||
<example>
|
||
<title>Создание и использование шаблона</title>
|
||
<programlisting role="php">
|
||
<![CDATA[
|
||
<?php
|
||
$ps = ps_new();
|
||
|
||
if (!ps_open_file($ps, "template.ps")) {
|
||
print "Не удаётся открыть файл PostScript\n";
|
||
exit;
|
||
}
|
||
|
||
ps_set_parameter($ps, "warning", "true");
|
||
ps_set_info($ps, "Creator", "template.php");
|
||
ps_set_info($ps, "Author", "Уве Штайнманн");
|
||
ps_set_info($ps, "Title", "Пример шаблона");
|
||
|
||
$pstemplate = ps_begin_template($ps, 30.0, 30.0);
|
||
ps_moveto($ps, 0, 0);
|
||
ps_lineto($ps, 30, 30);
|
||
ps_moveto($ps, 0, 30);
|
||
ps_lineto($ps, 30, 0);
|
||
ps_stroke($ps);
|
||
ps_end_template($ps);
|
||
|
||
ps_begin_page($ps, 596, 842);
|
||
ps_place_image($ps, $pstemplate, 20.0, 20.0, 1.0);
|
||
ps_place_image($ps, $pstemplate, 50.0, 30.0, 0.5);
|
||
ps_place_image($ps, $pstemplate, 70.0, 70.0, 0.6);
|
||
ps_place_image($ps, $pstemplate, 30.0, 50.0, 1.3);
|
||
ps_end_page($ps);
|
||
|
||
ps_close($ps);
|
||
ps_delete($ps);
|
||
?>
|
||
]]>
|
||
</programlisting>
|
||
</example>
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="seealso">
|
||
&reftitle.seealso;
|
||
<para>
|
||
<simplelist>
|
||
<member><function>ps_end_template</function></member>
|
||
</simplelist>
|
||
</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:"~/.phpdoc/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
|
||
-->
|
||
|