The processing I have in mind is this:
- there are thousands of png files
- each of them should be loaded, and its pixels accessed
- each pixel's channels will be processed in some way, and then written to a binary file
I was thinking of using some sort of module, like ImageMagick wrappers, or some other wrapper for a C image processing backend. Will Perl slow me down if I choose it to implement this task? I have a tool already that's written in Java ( it uses JDK's BufferedImage ), and it's reasonably fast. Would I be crazy to expect the same speed from Perl?