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
[edit] Last updated: Fri, 25 May 2012

view this page in

HaruPage::createURLAnnotation

(PECL haru >= 0.0.1)

HaruPage::createURLAnnotation新しい HaruAnnotation のインスタンスを作成する

説明

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

新しい HaruAnnotation のインスタンスを作成します。

パラメータ

rectangle

クリック可能な範囲を表す 4 つの座標の配列。

url

開く URL。

返り値

新しい HaruAnnotation のインスタンスを返します。

エラー / 例外

エラー時に HaruException をスローします。



add a note add a note User Contributed Notes HaruPage::createURLAnnotation
266073 at gmail dot com 13-Jul-2011 05:05
By default createURLAnnotation will create a cell with a solid border around it.  This is controlled by the haruAnnotation object returned by the method.  Create a reference to the haruAnnotation object and alter the border style to remove the solid border.

<?php
$haruAnotation
= $currentHaruPage->createURLAnnotation(Array($leftX,$bottomY,$rightX,$topY),'http://'.$dataItem);
$haruAnotation->setBorderStyle(0, 0, 0); // this alters the border
?>
Kore 30-Jul-2009 10: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