Are there image processing libraries for PHP that'd allow manipulating images on a pixel by pixel basis like MATLAB?

StackOverflow https://stackoverflow.com//questions/9570396

  •  07-12-2019
  •  | 
  •  

Question

I'm working on a project that might require me to compute the DCT of the image. Hence the question.

Was it helpful?

Solution

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

I think it would be best to process the files using another language instead of PHP or library/application such as - ImageMagick php.net/manual/en/book.imagick.php. I've never used this myself, so don't really know performance issues. Also -> wideimage.sourceforge.net/ The GD functions, as described in the previous answer, are quite slow, and sometimes can take a huge chunk of the CPU for processing.

Take a look here for seperate benchmarks etc: http://kore-nordmann.de/blog/comparison_of_php_image_libraries_update.html

OTHER TIPS

GD has per-pixel operations, but they're not particularly fast: imagecolorat() and imagesetpixel()

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top