1.) I would have to do some research to figure out how that would work. Feel free to contact me to give me some pointers.
2.) This will be added before the next release. I will call this option 'dds:mipmapcount'?
Search found 1533 matches
- 2013-09-09T22:10:55-07:00
- Forum: Users
- Topic: Strange "add" behaviour
- Replies: 31
- Views: 17139
- 2013-09-09T13:19:55-07:00
- Forum: Bugs
- Topic: compare's exit code is always 0
- Replies: 20
- Views: 19312
Re: compare's exit code is always 0
I think you should report the problem to im4java so they can change their code. There is no option available to force the exit code to zero and we should probably also not add such an obscure feature.
- 2013-09-09T12:08:13-07:00
- Forum: Magick++
- Topic: How to write multi page image to multiple blobs?
- Replies: 5
- Views: 8740
Re: How to write multi page image to multiple blobs?
You should be able to figure it out yourself with the following examples:
http://www.cplusplus.com/reference/vector/vector/begin/
http://www.imagemagick.org/Magick++/Image.html
http://www.cplusplus.com/reference/vector/vector/begin/
http://www.imagemagick.org/Magick++/Image.html
- 2013-09-09T11:47:15-07:00
- Forum: Magick++
- Topic: How to write multi page image to multiple blobs?
- Replies: 5
- Views: 8740
Re: How to write multi page image to multiple blobs?
You should iterate your vector and call the write method of Image.
- 2013-09-09T11:07:51-07:00
- Forum: Bugs
- Topic: SVG to PNG fails with: "You forgot to call g_type_init()"
- Replies: 5
- Views: 8499
Re: SVG to PNG fails with: "You forgot to call g_type_init()
A patch for this problem has been already been committed: http://trac.imagemagick.org/changeset/13123. This will be fixed in 6.8.6-10.
- 2013-09-08T22:15:23-07:00
- Forum: Bugs
- Topic: NullPointerException when using CompareCmd via Im4java
- Replies: 1
- Views: 7230
Re: NullPointerException when using CompareCmd via Im4java
It is a bug in im4java. In line 252 of ImageCommand.java there is no check if iErrorText is null. protected void finished(int pReturnCode) throws Exception { if (pReturnCode > 0) { CommandException ce; if (iErrorText.size() > 0) { // this line ce = new CommandException(iErrorText.get(0)); I think th...
- 2013-09-07T12:40:11-07:00
- Forum: Users
- Topic: Tiff to sdds with alpha composting command line
- Replies: 9
- Views: 5061
- 2013-09-07T12:39:24-07:00
- Forum: Users
- Topic: Strange "add" behaviour
- Replies: 31
- Views: 17139
Re: Strange "add" behaviour
I just committed my changes to add support for writing dds files. This will be included in the next release of ImageMagick. You can use the following options when writing dds files: dds:compression dxt5 (Write the file in the dxt5 format, this is the default value) dxt1 (Write the file in the dxt1 f...
- 2013-09-06T10:58:53-07:00
- Forum: Magick++
- Topic: Can't modify opacity channel from C++ API
- Replies: 3
- Views: 6908
Re: Can't modify opacity channel from C++ API
Which 'empty' methods are you talking about? You can access the 'ansi c' methods with the namespace MagickCore. Those are the methods that are used by the command line. I will add a morphology method to the Image class of Magick++ that uses the MagickCore method(s).
- 2013-09-06T09:03:57-07:00
- Forum: Bugs
- Topic: PSD Convert sometimes
- Replies: 5
- Views: 3639
Re: PSD Convert sometimes
You should probably upgrade your imagemagick then. Your version is quite old.
- 2013-09-06T03:04:01-07:00
- Forum: Bugs
- Topic: PSD Convert sometimes
- Replies: 5
- Views: 3639
Re: PSD Convert sometimes
What version of ImageMagick are you using? With the latest version I can convert it without any problems.
- 2013-09-06T02:13:09-07:00
- Forum: Bugs
- Topic: PSD Convert sometimes
- Replies: 5
- Views: 3639
Re: PSD Convert sometimes
Can you put up a link to a psd that does not work?
- 2013-09-05T14:39:58-07:00
- Forum: Magick++
- Topic: Can't modify opacity channel from C++ API
- Replies: 3
- Views: 6908
Re: Can't modify opacity channel from C++ API
The 'morphology' method is not yet available in Magick++. I am going to add some 'missing' methods to Magick++. I will make sure to also include this method.
- 2013-09-05T03:57:47-07:00
- Forum: Users
- Topic: unable to perform resize on .SR2 image
- Replies: 3
- Views: 2103
Re: unable to perform resize on .SR2 image
r-- is not about permissions but it is about support. ImageMagick only supports reading SR2 images, you cannot write SR2 images with it.
- 2013-09-04T00:11:50-07:00
- Forum: Bugs
- Topic: Bug in BMP file retrieved from scanner
- Replies: 5
- Views: 5766
Re: Bug in BMP file retrieved from scanner
It is a bug in the software that created your BMP. The header of your file reports a different size then the actual file size. More info here: http://en.wikipedia.org/wiki/BMP_file_format#Bitmap_file_header. ImageMagick reports it as a error if the header contains a higher size and a warning if it i...