Search found 5 matches
- 2018-08-17T07:53:08-07:00
- Forum: Bugs
- Topic: Problems with -density if -unit PixelsPerInch not specificied before input image
- Replies: 18
- Views: 31494
Re: Problems with -density if -unit PixelsPerInch not specificied before input image
Ah, my bad. I'm using imagemagick/7.0.8-10/bin/convert instead of imagemagick/7.0.8-10/bin/magic
- 2018-08-17T03:39:38-07:00
- Forum: Bugs
- Topic: Problems with -density if -unit PixelsPerInch not specificied before input image
- Replies: 18
- Views: 31494
Re: Problems with -density if -unit PixelsPerInch not specificied before input image
I want to convert image to new image with resolution 350 and unit PixelsPerInch, but IM's converting resolution 350 -> 889 and update unit.
- 2018-08-15T05:34:53-07:00
- Forum: Bugs
- Topic: Problems with -density if -unit PixelsPerInch not specificied before input image
- Replies: 18
- Views: 31494
Re: Problems with -density if -unit PixelsPerInch not specificied before input image
You can get source.jpg here
- 2018-08-15T01:51:35-07:00
- Forum: Bugs
- Topic: Problems with -density if -unit PixelsPerInch not specificied before input image
- Replies: 18
- Views: 31494
Re: Problems with -density if -unit PixelsPerInch not specificied before input image
Yep, I agree that 350 dpi = 889 dpcm.
But in both case:
Units: PixelsPerInch
Units: PixelsPerInch
Resolution: 889x889
Units: PixelsPerInch
Resolution: 350x350
But in both case:
Units: PixelsPerInch
Code: Select all
convert source.jpg -units PixelsPerInch -density 350 out.jpg
Resolution: 889x889
Code: Select all
convert -units PixelsPerInch -density 350 source.jpg out.jpg
Resolution: 350x350
- 2018-08-14T04:05:06-07:00
- Forum: Bugs
- Topic: Problems with -density if -unit PixelsPerInch not specificied before input image
- Replies: 18
- Views: 31494
Re: Problems with -density if -unit PixelsPerInch not specificied before input image
Hello! It's still actual problem. Version: ImageMagick 7.0.8-9 Q16 x86_64 2018-08-08 In my case I'm trying to convert JPG with PixelsPerCentimeter to JPG with PixelsPerInch and have the same problem. convert source.jpg -units PixelsPerInch -density 350 out.jpg Resolution: 889x889 convert -units ...