PHP imagesx()、imagesy() – 獲取圖像寬度與高度
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ù)返回的圖像資源。
實例
<?php $img = imagecreatefrompng("runoob-logo.png"); echo "圖像寬度:",imagesx( $img ),"<br />"; echo "圖像高度:",imagesy( $img ); ?>
瀏覽器輸出:
圖像寬度:290 圖像高度:69
相關(guān)文章
獲取圖像信息函數(shù):getimagesize()
相關(guān)文章
- PHP 簡介
- PHP 函數(shù)
- PHP $_GET 變量
- PHP 文件處理
- PHP 異常處理
- PHP array() 函數(shù)
- PHP array_column() 函數(shù)
- PHP array_combine() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP each() 函數(shù)
- PHP end() 函數(shù)
- PHP key() 函數(shù)
- PHP 5 Array 函數(shù)