PHP 8.6.0 Beta 1 is available for testing

imagesx

(PHP 4, PHP 5, PHP 7, PHP 8)

imagesxDevuelve el ancho de una imagen

Descripción

function imagesx(GdImage $image): int

Devuelve el ancho del objeto imagen image.

Parámetros

image
Un objeto GdImage , retornado por una de las funciones de creación de imágenes, como imagecreatetruecolor() .

Valores devueltos

Devuelve el ancho de la imagen image.

Historial de cambios

Versión Descripción
8.0.0 image ahora espera una instancia de GdImage ; anteriormente, se esperaba un recurso gd de tipo resource válido.

Ejemplos

Ejemplo #1 Ejemplo con imagesx()

<?php
// Creación de una imagen de 300*200
$img = imagecreatetruecolor(300, 200);
echo imagesx($img); // 300
?>

Véase también

Found A Problem?

Learn How To Improve This PageSubmit a Pull RequestReport a Bug
+add a note

User Contributed Notes 1 note

up
6
leonardo AT saochico DOT com
22 years ago
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($h, 2, ',', ' ');
 $l = number_format($l, 2, ',', ' ');
 
 #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]);
?>
+add a note

AltStyle によって変換されたページ (->オリジナル) /