in reply to TIFF Perl Module needed

Good day, fellow Perl Monk.

I use the command line mode of ImageMagick for this kind of tasks.

The commands you want are identify and convert.

You can call them from Perl using backticks:

@info = `identify $filename`;

See man identify and man convert.