imagick 的性能问题
我使用 imagick 创建带角的缩略图。
以下是有趣的台词:
$background = 'white';
$image->cropThumbnailImage($width,$height);
$im = new Imagick();
$im->newImage($width, $height, $background);
//$image->sharpenImage(50, 1);
$image->roundCorners( $cornersSize, $cornersSize);
$im->compositeImage($image, Imagick::COMPOSITE_OVER, 0, 0);
$im->setImageFormat('jpeg');
$im->flattenImages();
$image = $im;
在服务器上创建它需要 10 秒!
在小型笔记本电脑上,需要 1.5 秒(仍然很慢)。
我们该如何改进呢?
精度:
我仅使用一张图像重新启动代码:20148px x 1222px。在笔记本电脑上 10 秒,在服务器上 20 秒。
服务器:
笔记本电脑:
- php5-imagick : 3.0.0~rc1-1build1
- imagemagick : 7:6.6.2.6-1ubuntu1.1
- ubuntu 10.10
- 2048mo RAM 1333MHz DDR3
- Intel Core i3-370M 2,4GHz, 3MB
服务器:
- Intel Xeon (16 Mo Cache)
- 8Go RAM (RDIMM)
- 没有在线网站。
I user imagick to create thumbnails with corners.
Here are the interesting lines:
$background = 'white';
$image->cropThumbnailImage($width,$height);
$im = new Imagick();
$im->newImage($width, $height, $background);
//$image->sharpenImage(50, 1);
$image->roundCorners( $cornersSize, $cornersSize);
$im->compositeImage($image, Imagick::COMPOSITE_OVER, 0, 0);
$im->setImageFormat('jpeg');
$im->flattenImages();
$image = $im;
It takes 10 seconds on a server to create it!
On a small laptop, it takes 1.5s (still slow).
How can we improve that?
Precisions:
I relaunch the code with only one image: 20148px x 1222px. 10 seconds on the laptop, 20s on the server.
The server:
The laptop:
- php5-imagick : 3.0.0~rc1-1build1
- imagemagick : 7:6.6.2.6-1ubuntu1.1
- ubuntu 10.10
- 2048mo RAM 1333MHz DDR3
- Intel Core i3-370M 2,4GHz, 3MB
Server:
- Intel Xeon (16 Mo Cache)
- 8Go RAM (RDIMM)
- no website online.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的服务器是 Ubuntu 10.04/Debian 6,使用 Viruozzo,或者可能是其他虚拟化平台,或者可能只是多处理器系统,这可能是 ImageMagick 的 OpenMP 支持的错误。
在这些平台上使用 imagick PHP 扩展时,Imagemagick 可能会很慢。制作一张简单的图像需要几秒钟而不是几毫秒。
对我有用的解决方案:
http://tellgren.com/blog/2011/ 03/24/vps 上的 imagemagick 出现问题/
If your server is Ubuntu 10.04/Debian 6, using Viruozzo, or maybe other virtualization platforms, or maybe just multiprocessor systems, this MAY be a bug with the OpenMP support of ImageMagick.
Imagemagick may be slow with imagick PHP extension on theese platforms. It takes seconds rather than miliseconds to make a simple image.
The solution that worked for me:
http://tellgren.com/blog/2011/03/24/trouble-with-imagemagick-on-vps/
虽然您可以使用 GPU 进行一些处理,但在本例中并未使用它。只有你的CPU。
您似乎正在执行一些不必要的步骤。这是什么问题:
While you can use your GPU to do some processing, it is not used in this case. Only your CPU.
It seems that you are doing some unnecessary steps. What is wrong with this: