GD and Image 함수 목록
PHP Manual

imagesx

(PHP 4, PHP 5)

imagesxGet image width

설명

int imagesx ( resource $image )

Returns the width of the given image resource.

인수

image

imagecreatetruecolor() 등의 이미지 생성 함수에서 반환한 이미지 자원.

반환값

Return the width of the image or FALSE on errors.

예제

Example #1 Using imagesx()

<?php

// create a 300*200 image
$img imagecreatetruecolor(300200);

echo 
imagesx($img); // 300

?>

참고


GD and Image 함수 목록
PHP Manual