是否有PHP的图像处理库允许像MATLAB一样逐像素地操作图像?

时间:2012-03-05 16:42:03

标签: php image-processing dct

我正在开发一个可能需要我计算图像DCT的项目。因此问题。

2 个答案:

答案 0 :(得分:1)

- > Is there a fast way of pixel-by-pixel proceccing images in PHP

我认为最好使用其他语言而不是PHP或库/应用程序来处理文件,例如 - ImageMagick php.net/manual/en/book.imagick.php。 我自己从未使用过这个,所以不要真正了解性能问题。 还 - > wideimage.sourceforge.net/ 如上一个答案中所述,GD功能非常慢,有时可能会占用大量的CPU进行处理。

在这里查看单独的基准测试等: http://kore-nordmann.de/blog/comparison_of_php_image_libraries_update.html

答案 1 :(得分:0)

GD具有逐像素操作,但它们并不是特别快:imagecolorat()imagesetpixel()