update : 2015.11.03
php.shukuma.com검색:
|
imagepsbbox(PHP 4, PHP 5) imagepsbbox — Give the bounding box of a text rectangle using PostScript Type1 fonts 설명
array imagepsbbox
( string
$text
, resource $font
, int $size
)
array imagepsbbox
( string
$text
, resource $font
, int $size
, int $space
, int $tightness
, float $angle
)Gives the bounding box of a text rectangle using PostScript Type1 fonts. The bounding box is calculated using information available from character metrics, and unfortunately tends to differ slightly from the results achieved by actually rasterizing the text. If the angle is 0 degrees, you can expect the text to need 1 pixel more to every direction. Warning
This function was REMOVED in PHP 7.0.0. 인수
반환값Returns an array containing the following elements:
예제Example #1 imagepsbbox() usage
<?php 변경점
주의
|