in reply to Gif image corrupted
P.S. Also, please put a problem description in your original question, so others who didn't see the Chatterbox stuff, will know what your problem is.#!/usr/bin/perl use warnings; use strict; use GD; my $image = GD::Image->newFromJpeg("frontpage.jpg"); my ($width,$height) = $image->getBounds(); print "width->$width\nheight->$height\n"; exit;
|
|---|