如何在不打开文件的情况下告诉.jpeg或.png文件的尺寸?
如果无法确定尺寸,我该如何自动裁剪图像?
我正在使用PHP和JS。
答案 0 :(得分: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