On Wed, January 24, 2007 12:08 am, Gerry Danen wrote: >> One other possibility is to see what happens if you do >> imagefromjpeg() >> on a progressive JPEG -- There amy be functions in GD that will tell >> you if the JPEG is progressive, once you have sucked it into PHP... > > Any idea which ones to look at? No, but a quick search on php.net for "JPEG progress" with "online documentation" from the popup yeilded: http://us3.php.net/manual/en/function.imageinterlace.php "If the interlace bit is set and the image is used as a JPEG image, the image is created as a progressive JPEG. This function returns whether the interlace bit is set for the image. " Presumably, then, this would work: <?php $filename = '/full/path/to/filename.jpg'; $jpeg = imagecreatefromjpeg($filename); $progressive = imageinterlace($jpeg); if ($progressive) echo "$filename is progressive.\n"; else echo "$filename is NOT progressive.\n"; ?> -- Some people have a "gift" link here. Know what I want? I want you to buy a CD from some starving artist. http://cdbaby.com/browse/from/lynch Yeah, I get a buck. So? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php