差异似乎相当大。几年前我做一些测试时,IM 的文件大小大约是 GD 大小的 5 倍。看到您使用的实际代码会很有趣。
我现在正在工作,但将照片调整为 592 x 592,文件大小为 50.3KB 我知道它的大小与您的不一样,但以质量 100 保存
您可以运行它并查看 IM 对输出文件的说明:convert image -verbose -identify
编辑:
你一定是做错了什么我刚刚进行了测试,结果如下 - 由于某种原因,缩略图大小与调整大小相同!也许是一个错误。
原始文件大小:4700 x 3178 2.31MB
-调整尺寸 = 1021 x 680 186kb
-缩略图尺寸 = 1021 x 680 186kb
GD 尺寸 = 1024 x 682 100kb
$original = 'IMG_4979_1.CR2';
// Convert to jpg as GD will not work with CR2 files
exec("convert $original image.jpg");
$image = "image.jpg";
exec("convert $image -resize 1024x680 output1.jpg");
exec("convert $image -thumbnail 1024x680 -strip output2.jpg");
// Set the path to the image to resize
$input_image = 'image.jpg';
// Get the size of the original image into an array
$size = getimagesize( $input_image );
// Set the new width of the image
$thumb_width = "1024";
// Calculate the height of the new image to keep the aspect ratio
$thumb_height = ( int )(( $thumb_width/$size[0] )*$size[1] );
// Create a new true color image in the memory
$thumbnail = ImageCreateTrueColor( $thumb_width, $thumb_height );
// Create a new image from file
$src_img = ImageCreateFromJPEG( $input_image );
// Create the resized image
ImageCopyResampled( $thumbnail, $src_img, 0, 0, 0, 0, $thumb_width, $thumb_height, $size[0], $size[1] );
// Save the image as resized.jpg
ImageJPEG( $thumbnail, "output3.jpg" );
// Clear the memory of the tempory image
ImageDestroy( $thumbnail );