PHP 獲取圖像寬度與高度
PHP 獲取圖像寬度函數(shù):imagesx()
imagesx() 函數(shù)用于獲取圖像的寬度,單位為像素,返回值為整型。
語法:
int imagesx( resource image )
參數(shù) image 為如 imagecreatetruecolor()、imagecreatefromjpeg() 等函數(shù)返回的圖像資源。
PHP 獲取圖像高度函數(shù):imagesy()
imagesy() 函數(shù)用于獲取圖像的高度,語法及用法同 imagesx() 。
語法:
int imagesy( resource image )
參數(shù) image 為如 imagecreatetruecolor()、imagecreatefromjpeg() 等函數(shù)返回的圖像資源。
實(shí)例
<?php $img = imagecreatefrompng("youj-logo.png"); echo "圖像寬度:",imagesx( $img ),"<br />"; echo "圖像高度:",imagesy( $img ); ?>
瀏覽器輸出:
圖像寬度:290 圖像高度:69
相關(guān)文章
獲取圖像信息函數(shù):getimagesize()
更多建議: