imagesx

(PHP 4, PHP 5)

imagesxGet image width

Description

int imagesx ( resource $image )

Returns the width of the given image resource.

Parameters

image

An image resource, returned by one of the image creation functions, such as imagecreatetruecolor().

Return Values

Return the width of the image or FALSE on errors.

Examples

Example #1 Using imagesx()

<?php

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

echo 
imagesx($img); // 300

?>

See Also

Коментарии

This function convert image size of Pixel to Centimeter

<?
#$imagem - source of image
#$dpi - resolution to convert E.g.: 72dpi or 300dpi

function px2cm($image$dpi) {
   
#Create a new image from file or URL
   
$img ImageCreateFromJpeg($image);

   
#Get image width / height
   
$x ImageSX($img);
   
$y ImageSY($img);
   
   
#Convert to centimeter
   
$h $x 2.54 $dpi;
   
$l $y 2.54 $dpi;
   
   
#Format a number with grouped thousands
   
$h number_format($h2','' ');
   
$l number_format($l2','' ');
   
   
#add size unit
   
$px2cm[] = $h."cm";
   
$px2cm[] = $l."cm";
   
   
#return array w values
    #$px2cm[0] = X
    #$px2cm[1] = Y   
   
return $px2cm;
}

$image "C:\\inetpub\\wwwroot\\lab\\trata_img\\l0gik.jpg";
$dpi 300;

$result px2cm($image$dpi);

print (
$result[0]." x ".$result[1]);
?>
2003-11-21 09:24:32
http://php5.kiev.ua/manual/ru/function.imagesx.html

    Поддержать сайт на родительском проекте КГБ