Search found 2 matches

by srisakthikrishnan
2013-03-26T04:07:44-07:00
Forum: Users
Topic: PNG Image 72 DPI to 300 DPI convertion
Replies: 3
Views: 6060

Re: PNG Image 72 DPI to 300 DPI convertion

Thanks. I changed my command as convert "D:\1.png" -units "PixelsPerCentimeter" -strip -density 118.12 "D:\2.png" . This works fine in my local system(Windows 7 64 bit ) but not in Win Server 2003. I'm using ImageMagick-6.4.1-Q16 both in local and server. I'm invoking the command from ASP.Net page ...
by srisakthikrishnan
2013-03-19T09:39:28-07:00
Forum: Users
Topic: PNG Image 72 DPI to 300 DPI convertion
Replies: 3
Views: 6060

PNG Image 72 DPI to 300 DPI convertion

Hi I have PNG images of dimension 3600 X 3600 with 72 DPI and transparent background . I'm trying to change the DPI to 300. I tried below commands but its not working at all convert Img1.png -strip -units "PixelsPerCentimeter" -density 300 Img2.png convert Img1.png -resample 300 Img2.png I tried my ...