imagesx
(PHP 4, PHP 5, PHP 7, PHP 8)
imagesx — 取得影象寬度
說明
imagesx(resource
$image
): int
imagesx() 返回
image
所代表的影象的寬度。
示例 #1 使用 imagesx()
<?php
// create a 300*200 image
$img = imagecreatetruecolor(300, 200);
echo imagesx($img); // 300
?>