我想允许用户上传各种格式的图片类型图片( GIF,JPEG和PNG至少),但要将它们全部保存为 PNG数据库BLOB < / strong>即可。如果图像是超大的,按像素,我想在插入数据库之前调整它们的大小。
使用GD进行大小调整和PNG转换的最佳方法是什么?
编辑:遗憾的是,我需要使用的服务器上只有GD,没有ImageMagick。
答案 0 :(得分:24)
<?php
/*
Resizes an image and converts it to PNG returning the PNG data as a string
*/
function imageToPng($srcFile, $maxSize = 100) {
list($width_orig, $height_orig, $type) = getimagesize($srcFile);
// Get the aspect ratio
$ratio_orig = $width_orig / $height_orig;
$width = $maxSize;
$height = $maxSize;
// resize to height (orig is portrait)
if ($ratio_orig < 1) {
$width = $height * $ratio_orig;
}
// resize to width (orig is landscape)
else {
$height = $width / $ratio_orig;
}
// Temporarily increase the memory limit to allow for larger images
ini_set('memory_limit', '32M');
switch ($type)
{
case IMAGETYPE_GIF:
$image = imagecreatefromgif($srcFile);
break;
case IMAGETYPE_JPEG:
$image = imagecreatefromjpeg($srcFile);
break;
case IMAGETYPE_PNG:
$image = imagecreatefrompng($srcFile);
break;
default:
throw new Exception('Unrecognized image type ' . $type);
}
// create a new blank image
$newImage = imagecreatetruecolor($width, $height);
// Copy the old image to the new image
imagecopyresampled($newImage, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
// Output to a temp file
$destFile = tempnam();
imagepng($newImage, $destFile);
// Free memory
imagedestroy($newImage);
if ( is_file($destFile) ) {
$f = fopen($destFile, 'rb');
$data = fread($f);
fclose($f);
// Remove the tempfile
unlink($destFile);
return $data;
}
throw new Exception('Image conversion failed.');
}
答案 1 :(得分:6)
您的流程步骤应如下所示:
ImageMagick更快,生成更好的图像,更易于配置,最后(IMO)更容易编码。
@ceejayoz只是等待新的GD - 这是像MySQLi一样的OOP,它实际上并不坏:))
答案 2 :(得分:3)
如果要使用gdlib,请使用gdlib 2或更高版本。它有一个名为imagecopyresampled()的函数,它会在调整大小时内插像素并且看起来更好。
此外,我一直听到网络上注意到在数据库中存储图像是不好的形式:
我能看到的唯一优势是您不需要保持数据库和图像文件的同步。我仍然会建议反对它。
答案 3 :(得分:3)
您确定服务器上没有ImageMagick吗?
我邀请您使用PHP(问题用PHP标记)。我使用的托管公司没有根据phpinfo()启用ImageMagick扩展。
但当我问他们时他们说这里是PHP代码提供的ImageMagick程序列表。很简单 - PHP中没有IM界面,但我可以直接从PHP调用IM程序。
我希望你有同样的选择。
我强烈同意 - 将图像存储在数据库中并不是一个好主意。
答案 4 :(得分:3)
这样的事情,也许是:
<?php
//Input file
$file = "myImage.png";
$img = ImageCreateFromPNG($file);
//Dimensions
$width = imagesx($img);
$height = imagesy($img);
$max_width = 300;
$max_height = 300;
$percentage = 1;
//Image scaling calculations
if ( $width > $max_width ) {
$percentage = ($height / ($width / $max_width)) > $max_height ?
$height / $max_height :
$width / $max_width;
}
elseif ( $height > $max_height) {
$percentage = ($width / ($height / $max_height)) > $max_width ?
$width / $max_width :
$height / $max_height;
}
$new_width = $width / $percentage;
$new_height = $height / $percentage;
//scaled image
$out = imagecreatetruecolor($new_width, $new_height);
imagecopyresampled($out, $img, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
//output image
imagepng($out);
?>
我没有对代码进行测试,因此可能存在一些语法错误,但是它应该为您提供有关如何完成的公平演示。另外,我假设一个PNG文件。您可能希望使用某种switch语句来确定文件类型。
答案 5 :(得分:0)
This article似乎符合您的要求。您需要将保存imagejpeg()函数更改为imagepng(),并将文件保存为字符串而不是将其输出到页面,但除此之外,它应该很容易复制/粘贴到现有代码中。 / p>
答案 6 :(得分:0)
绝对需要GD吗? ImageMagick速度更快,生成更好的图像,更易于配置,最后(IMO)更容易编码。
答案 7 :(得分:0)
我认为this page是一个很好的起点。它使用imagecreatefrom(jpeg / gif / png)并调整大小并转换图像,然后输出到浏览器。而不是输出浏览器,您可以输出到数据库中的BLOB而不需要很多代码重写。
答案 8 :(得分:0)
phpThumb是一个值得关注的高级抽象。