Search found 3 matches

by slahoti
2012-12-05T01:55:51-07:00
Forum: Users
Topic: Not able to resize images to <150KB file-size
Replies: 1
Views: 4258

Not able to resize images to <150KB file-size

Hi, I am using imagemagick in windows 7. I need to resize and then save a bunch of images such that the resulting file size is <150KB. I am using a batch script to do the same. Here is my code - @for %%f in (*.jpg) do ( convert %%f -resize 1000 %%~nf-1000.jpg convert %%~nf-1000.jpg -define jpeg ...
by slahoti
2012-10-04T07:32:55-07:00
Forum: Users
Topic: [SOLVED]Pixelation while downsizing
Replies: 1
Views: 2348

Re: Pixelation while downsizing

I actually figured this out.
IM by default is using a lower quality setting. Using irfanview I was resizing with quality = 100 and when I used '-quality 100' in resize command using IM I got the same result. :)
by slahoti
2012-10-04T06:52:46-07:00
Forum: Users
Topic: [SOLVED]Pixelation while downsizing
Replies: 1
Views: 2348

[SOLVED]Pixelation while downsizing

Hi, I am trying to resize/resample an image from 800x1080 pixels size to 259x350 pixels size using IM's resize -filter Lanczos command. However, the resultant image looks pixelated. When I resize the image in Irfanview using the same Lanczos filter, the result is better than IM. I have tried all the ...