Search found 15 matches
- 2015-10-20T05:23:46-07:00
- Forum: Magick++
- Topic: Dpi of png is not changing with imagemagick c++ api.
- Replies: 12
- Views: 24624
Re: Dpi of png is not changing with imagemagick c++ api.
Able to see change in dpi using irfan viewer.
- 2015-10-20T05:14:06-07:00
- Forum: Bugs
- Topic: dpi of png image is not changing.
- Replies: 13
- Views: 13459
Re: dpi of png image is not changing.
Hi All,
I am able to see the change in dpi using irfan view. Appreciate your effort to help me out.
Thanks,
Deepak
I am able to see the change in dpi using irfan view. Appreciate your effort to help me out.
Thanks,
Deepak
- 2015-10-19T07:15:26-07:00
- Forum: Bugs
- Topic: dpi of png image is not changing.
- Replies: 13
- Views: 13459
Re: dpi of png image is not changing.
Hi, That is over 150 versions old. You should upgrade. See http://www.imagemagick.org/script/binary-releases.php#windows or http://www.imagemagick.org/script/install-source.php#windows In order to use new version of ImageMagick library I have done following thing. 1. Downloaded http://www ...
- 2015-10-17T03:48:13-07:00
- Forum: Bugs
- Topic: dpi of png image is not changing.
- Replies: 13
- Views: 13459
Re: dpi of png image is not changing.
Deepak[/quote] I couldn't see in your code anything having to do with density. I assume you created a new text chunk with the density info, with the proper chunk length and recalculated CRC, and then used your code to assemble a PNG file from the chunks, including your new or revised text chunk ...
- 2015-10-15T22:03:45-07:00
- Forum: Bugs
- Topic: dpi of png image is not changing.
- Replies: 13
- Views: 13459
Re: dpi of png image is not changing.
Hi,
We are using imagemagick-win64-vc110-6.7.6.rtt_patch.3 library, could u please let me know is there any hotfix availble?
Thanks,
Deepak
We are using imagemagick-win64-vc110-6.7.6.rtt_patch.3 library, could u please let me know is there any hotfix availble?
Thanks,
Deepak
- 2015-10-15T10:32:52-07:00
- Forum: Bugs
- Topic: dpi of png image is not changing.
- Replies: 13
- Views: 13459
Re: dpi of png image is not changing.
Hi,
Any one can look into this??
Thanks,
Deepak
Any one can look into this??
Thanks,
Deepak
- 2015-10-15T01:00:14-07:00
- Forum: Bugs
- Topic: dpi of png image is not changing.
- Replies: 13
- Views: 13459
Re: dpi of png image is not changing.
PNG stores "resolution" in pixels/meter. But I've seen density go into a PNG text chunk with "Density" keyword, and embedded in the EXIF data. The "density()" api may be putting the density info in the wrong place (BTW I can't find a "density()" API anywhere in the ImageMagick source. Are you using ...
- 2015-10-14T11:57:21-07:00
- Forum: Bugs
- Topic: dpi of png image is not changing.
- Replies: 13
- Views: 13459
dpi of png image is not changing.
Hi, I have used density(dpi) api to change the dpi of png image. dpi is not getting changed for PNG image but it works fine for JPEG image. Please let us know whether anything I need to before or after calling density(dpi). Reference : http://www.imagemagick.org/discourse-server/viewtopic.php?f=23&t ...
- 2015-10-14T10:30:07-07:00
- Forum: Magick++
- Topic: Dpi of png is not changing with imagemagick c++ api.
- Replies: 12
- Views: 24624
Re: Dpi of png is not changing with imagemagick c++ api.
HI,
Thanks,
Deepak
Thank you for the reply. Will wait for the developer reply as I am not getting information from any source to solve this issue.fmw42 wrote:One of the IM developers will need to check this out further.
Thanks,
Deepak
- 2015-10-14T03:21:51-07:00
- Forum: Magick++
- Topic: Dpi of png is not changing with imagemagick c++ api.
- Replies: 12
- Views: 24624
Re: Dpi of png is not changing with imagemagick c++ api.
try specifying the units as well. See if that makes any difference. Hi, We tried giving units. ----------------------------------------------------------------------------------------------------------- if(dpi.length() != 0){ const Magick::Geometry gm("150 cm,391 cm"); // Specified in cms image ...
- 2015-10-14T02:04:32-07:00
- Forum: Magick++
- Topic: Dpi of png is not changing with imagemagick c++ api.
- Replies: 12
- Views: 24624
Re: Dpi of png is not changing with imagemagick c++ api.
Hi, We tried giving units. ----------------------------------------------------------------------------------------------------------- if(dpi.length() != 0){ const Magick::Geometry gm("150 cm,391 cm"); // Specified in cms image.density(gm ...
- 2015-10-13T22:52:18-07:00
- Forum: Magick++
- Topic: Dpi of png is not changing with imagemagick c++ api.
- Replies: 12
- Views: 24624
Re: Dpi of png is not changing with imagemagick c++ api.
>Did you specify the units as well? IM will automatically convert dpi to dpc if proper units are specified, since png only uses dots per centimeter.[/quote] Hi, We are not specifying any units. We are just giving (150,150) and DPI is not getting changed. output dpi is same as input dpi. if(dpi ...
- 2015-10-13T05:54:43-07:00
- Forum: Magick++
- Topic: Dpi of png is not changing with imagemagick c++ api.
- Replies: 12
- Views: 24624
Re: Dpi of png is not changing with imagemagick c++ api.
Hi All,
could anyone help on this?
Thanks,
Deepak
could anyone help on this?
Thanks,
Deepak
- 2015-10-11T22:11:19-07:00
- Forum: Magick++
- Topic: Dpi of png is not changing with imagemagick c++ api.
- Replies: 12
- Views: 24624
Re: Dpi of png is not changing with imagemagick c++ api.
Hi,
My imagemagick version is -6.8.9-Q16 and OS is Windows 7 64.
Thanks,
Deepak
My imagemagick version is -6.8.9-Q16 and OS is Windows 7 64.
Thanks,
Deepak
- 2015-10-09T05:42:46-07:00
- Forum: Magick++
- Topic: Dpi of png is not changing with imagemagick c++ api.
- Replies: 12
- Views: 24624
Dpi of png is not changing with imagemagick c++ api.
Hi,
I have used density(dpi) api to change the dpi of png image. dpi is not getting changed for PNG image but it works fine for JPEG image.
Please let us know whether anything I need to before or after calling density(dpi).
Thanks,
Deepak
I have used density(dpi) api to change the dpi of png image. dpi is not getting changed for PNG image but it works fine for JPEG image.
Please let us know whether anything I need to before or after calling density(dpi).
Thanks,
Deepak