在网站上显示图像时是否可以重新调整图像尺寸?/如何在图像上传后重新调整图像尺寸?
添加时我将原始图像上传到原始文件夹并创建1个缩略图上传到拇指文件夹。但在网站上我需要在不同维度的很多地方展示图像。所以我需要重新调整图像的大小以显示所需的大小以避免图像缩小。
或者我是否需要为上传时所需的所有尺寸创建图像?
答案 0 :(得分:1)
如果获得高度和宽度比,并且以相同的比率动态地在新的高度和宽度中,则可以在不收缩的情况下重新调整图像的大小。但是如果你需要小图像,如果你加载大图像并使用高度和宽度来显示小尺寸。这是用户不必要的加载时间。
答案 1 :(得分:1)
当然,这是可能的。此外,它可能是最好的方法:根据请求创建必要的缩略图。如果您的网站处于开发阶段,您将永远不会猜测明天将为设计师创建哪些维度。您将一次又一次地返回上传功能,以适应新设计。值得去除设计和逻辑之间的硬依赖。
我不确定codeignitor。无论如何,在你的模板中使用这样的东西:
class Image {
public $filename;
public $caption;
/**
* Return full path to image.
* @return string path to file to make thumb
*/
public function fullPath() {
return "data/files/{$this->filename}";
}
/**
* Renders HTML IMG for thumb of given size.
*
* @param int $width max width, set to -1, if not important
* @param type $height max height, set to -1, if not important
* @return string html tag for image with correct width and height attributes
*/
public function htmlTag($width, $height) {
$t = $this->getThumb($width, $height);
return "<img src=\"{$t}\" alt=\"{$this->caption}\" width=\"{$width}\" height=\"{$height}\" />";
}
/**
* Get/create thumb image
* @param int $width width of the image
* @param int $height height of the image
* @return string path to the image
*/
public function getThumb(&$width, &$height) {
$currentImage = $this->fullPath();
$thumbFilename = md5($this->path . $width . $height) . '.png';
$thumbDir = 'data/thumbs/';
$thumbFilename = "{$thumbDir}/{$thumbFilename}";
// thumb already done?
if (is_file($thumbFilename)) {
// get real size to create correct html img tag
if ($width<0 || $height<0) {
$size = getimagesize($thumbFilename);
$width = $size[0];
$height = $size[1];
}
return $thumbFilename;
}
$ext = strtolower(pathinfo($currentImage, PATHINFO_EXTENSION));
if ($ext == 'jpeg' || $ext == 'jpg') {
$source = imagecreatefromjpeg($currentImage);
} else if ($ext == 'gif') {
$source = imagecreatefromgif($currentImage);
} else if ($ext == 'png') {
$source = imagecreatefrompng($currentImage);
}
$currentWidth = imagesx($source);
$currentHeight = imagesy($source);
// the sizes which we really will apply (default setup)
$realWidth = $width;
$realHeight = $height;
$realX = 0;
$realY = 0;
// decide regarding cutting
// if all params > 0, cuttin will be done
$cut = FALSE;
if ($width > 0 && $height > 0) {
$cut = TRUE;
} else if ($width < 0) { // width is not important, set proportion to that
$width = $realWidth = round($currentWidth * $height / $currentHeight);
} else if ($height < 0) { // height is not imporant
$height = $realHeight = round($currentHeight * $width / $currentWidth);
}
if ($cut) {
$kw = $currentWidth / $width;
$kh = $currentHeight / $height;
$k = $kw < $kh ? $kw : $kh;
$realWidth = round($currentWidth / $k);
$realHeight = round($currentHeight / $k);
if ($kh < $kw) {
$realX = round(($realWidth - $width) / 2) * $k;
} else {
$realY = round(($realHeight - $height) / 2) * $k;
}
}
$virtual = imagecreatetruecolor($width, $height);
imagealphablending($virtual, false);
$col = imagecolorallocatealpha($virtual, 0, 0, 0, 127);
imagefill($virtual, 0, 0, $col);
imagesavealpha($virtual, true);
imagecopyresampled($virtual, $source, 0, 0, $realX, $realY, $realWidth, $realHeight, $currentWidth, $currentHeight);
// create file
imagepng($virtual, $thumbFilename);
return $thumbFilename;
}
}
用法:
$image = new Image();
$image->filename = "image.jpeg"; // really stored in 'data/files/image.jpg', let's say 300x400px
$image->caption = "My Image";
// get thumb 50x50: left and right parts of image will be cut off
echo $image->htmlTag(50, 50);
// get thumb of width 100 (height does not matter, keep proportions)
echo $image->htmlTag(100, -1);
// get thumb of height 100 (width does not matter, keep proportions)
echo $image->htmlTag(-1, 100);
答案 2 :(得分:1)
Arun Jain的答案以方便的方式解决了问题的技术/实践方面。
更一般地说,当你处理这类计算机密集型任务时,大部分时间都是以懒惰方式做到这一点的好主意。至少从CPU的角度来看。
原因是你永远不知道在实际请求之前是否会以给定的分辨率加载给定的图像。一旦请求,在大多数情况下,在每个请求上重新计算它比将其存储用于假设的以后使用更昂贵。 一个常见的设计就是在请求时计算/调整图像大小,如果高速缓存中尚未提供,则存储以供以后使用。
timthumb图书馆似乎很好地处理了所有这些问题,我自己没有用过它。
我在库中做了一些非常基本的检查,它似乎有安全性,但我想强调它被宣传为测试版软件。