我有一个带有virtmart模块的joomla网站。
我所拥有的是在其他域上托管的图片和缩略图。
Virtuemart为我提供了两个选择:
1 - 浏览图片,将自动创建缩略图
2 - 输入外部托管图像的URL,此选项没有调整大小选项
我克服这个问题的方法(在课程的帮助下)是为img标签设置height =“”属性。唯一的问题是,当加载大图像时,即:500 x 700像素,所谓的缩略图需要时间来加载,这是合乎逻辑的。
有人可以选择如何根据缩略图缩短加载时间来调整网址中的图片的大小吗?
就我个人而言,我正在考虑一种降低调整大小的图像的图像质量的方法,该图像来自带有代码,css或其他任何内容的网址?
我知道这与解决代码关系不大,但我知道你们知道的更多选择。
答案 0 :(得分:12)
您可以使用PHP的imagecopyresampled功能。
示例程序(来源:php.net)
<?php
// The file
$filename = 'http://valplibrary.files.wordpress.com/2009/01/5b585d_merry-christmas-blue-style.jpg';
$percent = 0.5; // percentage of resize
// Content type
header('Content-type: image/jpeg');
// Get new dimensions
list($width, $height) = getimagesize($filename);
$new_width = $width * $percent;
$new_height = $height * $percent;
// Resample
$image_p = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
// Output
imagejpeg($image_p, null, 100);
?>