-2

如何在不打开 .jpeg 或 .png 文件的情况下判断其尺寸?

如果无法确定尺寸,如何自动裁剪图像?

我正在使用 PHP 和 JS。

4

1 回答 1

1
list($width, $height) = getimagesize("img.jpg");
      or

$im=imagecreatefromjpeg("image_testin_1.JPG");
imagetruecolortopalette($im, false, 255);

$w = imagesx($im);//provide width of full page
$h = imagesy($im);//provide height of full page
于 2012-11-17T11:12:59.443 回答