imagesy
(PHP 4, PHP 5, PHP 7, PHP 8)
imagesy — 画像の高さを取得する
戻り値
image
の高さを返します。
変更履歴
バージョン | 説明 |
---|---|
8.0.0 |
image は、
GdImage
クラスのインスタンスを期待するようになりました。
これより前のバージョンでは、有効な gd resource が期待されていました。
|
例
例1 imagesy() の使用法
<?php
// 300*200 の画像を作成します
$img = imagecreatetruecolor(300, 200);
echo imagesy($img); // 200
?>
参考
- imagecreatetruecolor() - TrueColor イメージを新規に作成する
- getimagesize() - 画像の大きさを取得する
- imagesx() - 画像の幅を取得する
+add a note
User Contributed Notes
There are no user contributed notes for this page.