| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
imagegetclip(PHP 7.2) imagegetclip — Get the clipping rectangle 説明
array imagegetclip
( resource
$im
)imagegetclip() retrieves the current clipping rectangle, i.e. the area beyond which no pixels will be drawn. パラメータ
返り値The function returns an indexed array with the coordinates of the clipping rectangle which has the following entries:
例例1 imagegetclip() example Setting and retrieving the clipping rectangle.
<?php 上の例の出力は以下となります。 Array ( [0] => 10 [1] => 10 [2] => 89 [3] => 89 ) 参考
|
![]() |
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「imagegetclip - Get the clipping rectangle」をGoogle検索
|