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

search for in the

HaruPage::curveTo2> <HaruPage::createTextAnnotation
Last updated: Fri, 20 May 2011

view this page in

HaruPage::createURLAnnotation

(PECL haru >= 0.0.1)

HaruPage::createURLAnnotationCrea una nueva instancia de HaruAnnotation

Descripción

object HaruPage::createURLAnnotation ( array $rectangle , string $url )

Crea una nueva instancia de HaruAnnotation.

Parámetros

rectangle

Un arreglo con 4 coordenadas del área clickeable.

url

La URL para abrir.

Valores devueltos

Devuelve una nueva instancia de HaruAnnotation.

Errores/Excepciones

Lanza una HaruException cuando se produce un error.



add a note add a note User Contributed Notes HaruPage::createURLAnnotation
Kore 30-Jul-2009 08:01
Like shown in the source code [1] the array defining the rectangle should look like:

<?php
$rect
= array(
   
$bottomLeftXCoordinate,
   
$bottomLeftYCoordinate,
   
$topRightXCoordinate,
   
$topRightYCoordinate,
);
?>

As always these values have to be given in "pt" (point, 72dpi).

[1] http://cvs.php.net/viewvc.cgi/pecl/haru/haru.c?view=markup#l701

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