Search found 2 matches

by dudeman
2015-03-24T10:28:50-07:00
Forum: Users
Topic: Detecting Transparency?
Replies: 2
Views: 1021

Re: Detecting Transparency?

Awesome! You pointed me in the right direction. FYI I got this perl code from stack overflow. It seems to do exactly what I want. Found it thanks to snibgo. #!/usr/bin/perl use warnings; use strict; use Image::Magick; my $image = Image::Magick->new(); $image->Read($ARGV[0]); my $a = $image->Get ...
by dudeman
2015-03-23T14:58:08-07:00
Forum: Users
Topic: Detecting Transparency?
Replies: 2
Views: 1021

Detecting Transparency?

Hi, I have a pretty simple application that i've inherited maintenance of. The app keeps a directory of images that can be searched based on a number of stored data points. I've been ask to add a boolean flag if an image has transparency. All the images are png, jpeg, and maybe some gifs. I tried ...