GD and Image Funzioni
PHP Manual

imagesx

(PHP 4, PHP 5)

imagesxGet image width

Descrizione

int imagesx ( resource $image )

Returns the width of the given image resource.

Elenco dei parametri

image

Una risorsa immagine, restituita da una delle funzioni di creazione immagine, come imagecreatetruecolor().

Valori restituiti

Return the width of the image or FALSE on errors.

Esempi

Example #1 Using imagesx()

<?php

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

echo 
imagesx($img); // 300

?>

Vedere anche:


GD and Image Funzioni
PHP Manual