Search found 6 matches

by Oldes
2011-12-19T05:04:47-07:00
Forum: Digital Image Processing
Topic: Automatic segment detection/croping
Replies: 2
Views: 15779

Automatic segment detection/croping

Hi, is there any function which can be used for automatic segment detection which would return regions usable for multiple crop? For example if I have sequence of PNGs with transparent backgrounds like this: http://desajn.net/animace_skret_pes0768.png I want to get the two figures as 2 cropped ...
by Oldes
2010-12-25T03:01:23-07:00
Forum: Developers
Topic: How to save PNG without background tag?
Replies: 11
Views: 26403

Re: How to save PNG without background tag?

You can set options, properties, and artifacts with the MagickWand API methods MagickSetOption(), MagickSetImageProperty(), and MagickSetImageArtifact() respectively. Depending on your context, choose one to exclude PNG chunks, for example, MagickSetOption(wand,"png:exclude-chunk","bkgd ...
by Oldes
2010-12-23T14:23:03-07:00
Forum: Developers
Topic: How to save PNG without background tag?
Replies: 11
Views: 26403

Re: How to save PNG without background tag?

Thank you very much!
by Oldes
2010-12-23T03:07:27-07:00
Forum: Developers
Topic: How to save PNG without background tag?
Replies: 11
Views: 26403

Re: How to save PNG without background tag?

anthony wrote:Glennrp was suggesting posible future additions to IM to allow it to remove these chunks.
So there is no way how not to write these chunks at this moment?
by Oldes
2010-12-22T06:53:37-07:00
Forum: Developers
Topic: How to save PNG without background tag?
Replies: 11
Views: 26403

Re: How to save PNG without background tag?

Still same result using:

Code: Select all

convert klic.png -define PNG:bkgd=no klic-new2.png
Also note that I would like to use MagickWand finally, I'm not sure how to use define with magick api. And I'm not interested in post processing, I want good IM functionality.
by Oldes
2010-12-22T06:07:14-07:00
Forum: Developers
Topic: How to save PNG without background tag?
Replies: 11
Views: 26403

How to save PNG without background tag?

Hi, I was searching for solution but found no answer yet so I'm asking here, how to save PNG file which does not have the background chunk. I'm looking for solution which would work with MagickWand, but I would like to see CMD like as well... The problem can be described like: I have PNG image with ...