in reply to image clean up and alignment

Hey, I don't have any advice on the bigger problem, but for image manipulation, PerlMagick isn't a bad choice. It provides a decent API to crop and rotate, along with lots of other good stuff. I suspect there's no particularly elegant solution to the second part, and that you'll just need to do a lot of custom code. Perhaps the other monks will prove me wrong :) I hope this helps!

Replies are listed 'Best First'.
Re: Re: image clean up and alignment
by caedes (Pilgrim) on Apr 16, 2003 at 02:46 UTC
    Image::Magick was also my first idea, but after more thought I doubt if it will be sufficient. I recently had a program that needed to read individual pixel color values from an image. From what I understand about Image::Magick, the underlying libraries support such functionality, however the Perl API for those libraries does not.

    I'm pretty sure that we'd have to be able to read pixel values for this problem, so perlMagick won't work. I'd love for someone to prove me wrong though!

    -caedes