I guess It was a bug in my build.
I re-downloaded the library and rebuilt it, and voila, it now works as it should.
Thank you!
Search found 6 matches
- 2012-12-25T06:27:43-07:00
- Forum: Bugs
- Topic: PSD file processed incorrectly?
- Replies: 10
- Views: 9148
- 2012-12-24T14:51:25-07:00
- Forum: Bugs
- Topic: PSD file processed incorrectly?
- Replies: 10
- Views: 9148
Re: PSD file processed incorrectly?
This code works for me to, see, but I do not want to write images to disk. I want to keep working with them, in memory, without touching disk. For this purpose I want to retrieve the second picture from the first list in that code, presumably by writing: list<Image> first; readImages( &first, blob ...
- 2012-12-24T13:28:01-07:00
- Forum: Bugs
- Topic: PSD file processed incorrectly?
- Replies: 10
- Views: 9148
Re: PSD file processed incorrectly?
writeImages() sort of works, but there is no way to retrieve the Magick::Image from list<Image> first. first.size() returns 1. There is only one image inside (again, even though writeImages() writes two to disk), and it's the one without transparency...
- 2012-12-24T10:44:42-07:00
- Forum: Bugs
- Topic: PSD file processed incorrectly?
- Replies: 10
- Views: 9148
Re: PSD file processed incorrectly?
Like I wrote before, STL interface is not helping:
readImages applied to blob returns only one image (even though when I dump the blob to disk and then read it with readImages, it returns two)...
- 2012-12-24T01:30:16-07:00
- Forum: Bugs
- Topic: PSD file processed incorrectly?
- Replies: 10
- Views: 9148
Re: PSD file processed incorrectly?
But the problem is, I just want an image as it appears in Photoshop. Some other image would have something else in layer [1], whatever it is. What I uploaded is but one example. And, additionally, I can not do this from Magick++'s Blob. I have no way of specifying this [1]: subImage/subRange do ...
- 2012-12-23T08:15:59-07:00
- Forum: Bugs
- Topic: PSD file processed incorrectly?
- Replies: 10
- Views: 9148
PSD file processed incorrectly?
Imagemagick handles some PSD files incorrectly. I uploaded one: http://www.speedyshare.com/gmmhE/N071CUSB-A00.psd It's just transparent background with black and red text on it, and Photoshop displays it as such. But when I convert it with imagemagick: convert N071CUSB_A00.psd -layers merge N071CUSB ...