downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

CairoContext::copyPath> <CairoContext::__construct
[edit] Last updated: Fri, 24 May 2013

view this page in

CairoContext::copyPage

cairo_copy_page

(PECL cairo >= 0.1.0)

CairoContext::copyPage -- cairo_copy_pageEmits the current page

Descrição

Estilo orientado à objeto (method):

public void CairoContext::copyPage ( void )

Estilo procedural:

void cairo_copy_page ( CairoContext $context )

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 CairoContext::showPage() if you want to get an empty page after the emission.

This is a convenience function that simply calls CairoSurface::copyPage() on CairoContext’s target.

Parâmetros

context

A valid CairoContext object created with CairoContext::__construct() or cairo_create()

Valor Retornado

Não há valor retornado.

Exemplos

Exemplo #1 Estilo orientado à objeto

<?php

$surface 
= new CairoImageSurface(CairoFormat::ARGB325050);

$context = new CairoContext($surface);

$context->copyPage();

?>

Exemplo #2 Estilo procedural

<?php

$surface 
cairo_image_surface_create(CAIRO_FORMAT_ARGB325050);

$context cairo_create($surface);

cairo_copy_page($context);

?>

Veja Também



add a note add a note User Contributed Notes CairoContext::copyPage - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites