Search found 5 matches

by ds1design
2014-08-28T07:02:27-07:00
Forum: PerlMagick
Topic: Image Density
Replies: 9
Views: 16173

Re: Image Density

Yes, maybe related to version, looking into it as running the following command creates new image but resolution does not change:

convert P1010117.JPG -resample 72x72 -quality 100 test_P1010117.JPG
by ds1design
2014-08-27T11:50:52-07:00
Forum: PerlMagick
Topic: Image Density
Replies: 9
Views: 16173

Re: Image Density

ImageMagick 6.2.8 05/08/12 Q16 This is one of the images I was testing with http://dev.riverquestchallenge.com/uploads/P1010117.JPG See here for identify -verbose http://dev.riverquestchallenge.com/cgi-bin/image_resize_test.pl I am not sure how to confirm libjpeg or platform - do you mean which *nix...
by ds1design
2014-08-27T09:31:09-07:00
Forum: PerlMagick
Topic: Image Density
Replies: 9
Views: 16173

Re: Image Density

JPG in and JPG out.
by ds1design
2014-08-27T09:18:30-07:00
Forum: PerlMagick
Topic: Image Density
Replies: 9
Views: 16173

Re: Image Density

No the image is direct from the camera. I also tried Set(density=>"72x72"); method to no avail.
by ds1design
2014-08-27T07:43:27-07:00
Forum: PerlMagick
Topic: Image Density
Replies: 9
Views: 16173

Image Density

I am trying to reduce image density (image is uploaded from camera at 300dpi). I want to conform all images to 72 dpi while processing. This is the code I have, but the resulting image remains 300dpi when tested in Photoshop. Any help would be greatly appreciated. use Image::Magick; $status = $image...