mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-31 00:08:56 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290903 c90b9560-bf6c-de11-be94-00142212c4b1
132 lines
3.2 KiB
XML
132 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<!-- $Revision$ -->
|
||
|
||
<refentry xml:id="cairocontext.copypage" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||
<refnamediv>
|
||
<refname>CairoContext::copyPage</refname>
|
||
<refname>cairo_copy_page</refname>
|
||
<refpurpose>Emits the current page</refpurpose>
|
||
</refnamediv>
|
||
|
||
<refsect1 role="description">
|
||
&reftitle.description;
|
||
<para>Object oriented style (method):</para>
|
||
<methodsynopsis>
|
||
<modifier>public</modifier> <type>void</type><methodname>CairoContext::copyPage</methodname>
|
||
<void />
|
||
</methodsynopsis>
|
||
<para>Procedural style:</para>
|
||
<methodsynopsis>
|
||
<type>void</type><methodname>cairo_copy_page</methodname>
|
||
<methodparam><type>CairoContext</type><parameter>context</parameter></methodparam>
|
||
</methodsynopsis>
|
||
<para>
|
||
Emits the current page for backends that support multiple pages, but doesn’t clear it, so,
|
||
the contents of the current page will be retained for the next page too.
|
||
Use <methodname>CairoContext::showPage</methodname> if you want to get an empty page after the emission.
|
||
</para>
|
||
<para>
|
||
|
||
This is a convenience function that simply calls <methodname>CairoSurface::copyPage</methodname>
|
||
on <classname>CairoContext</classname>’s target.
|
||
|
||
</para>
|
||
|
||
</refsect1>
|
||
|
||
<refsect1 role="parameters">
|
||
&reftitle.parameters;
|
||
<para>
|
||
<variablelist>
|
||
<varlistentry>
|
||
<term><parameter>context</parameter></term>
|
||
<listitem>
|
||
<para>
|
||
A valid <classname>CairoContext</classname> object created with <methodname>CairoContext::__construct</methodname> or
|
||
<function>cairo_create</function>
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
</variablelist>
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="returnvalues">
|
||
&reftitle.returnvalues;
|
||
<para>
|
||
&return.void;
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="examples">
|
||
&reftitle.examples;
|
||
<para>
|
||
<example>
|
||
<title>Object oriented style</title>
|
||
<programlisting role="php">
|
||
<![CDATA[
|
||
<?php
|
||
|
||
$surface = new CairoImageSurface(CairoFormat::ARGB32, 50, 50);
|
||
|
||
$context = new CairoContext($surface);
|
||
|
||
$context->copyPage();
|
||
|
||
?>
|
||
]]>
|
||
</programlisting>
|
||
</example>
|
||
</para>
|
||
<para>
|
||
<example>
|
||
<title>Procedural style</title>
|
||
<programlisting role="php">
|
||
<![CDATA[
|
||
<?php
|
||
|
||
$surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 50, 50);
|
||
|
||
$context = cairo_create($surface);
|
||
|
||
cairo_copy_page($context);
|
||
|
||
?>
|
||
]]>
|
||
</programlisting>
|
||
</example>
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="seealso">
|
||
&reftitle.seealso;
|
||
<para>
|
||
<simplelist>
|
||
<member><methodname>CairoContext::showPage</methodname></member>
|
||
<member><methodname>CairoSurface::copyPage</methodname></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:"../../../../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
|
||
-->
|