Search found 5 matches
- 2014-06-24T12:03:34-07:00
- Forum: Users
- Topic: Can image be loaded without loading profiles?
- Replies: 7
- Views: 3326
Re: Can image be loaded without loading profiles?
I should clarify that I am using the term "Profiles" as it is used within a certain portion of the ImageMagick code rather than in the more narrow sense of published standard profiles like ICC, EXIF. Specifically, I am concerned with TIFF images and the TIFFGetProfiles() method of tiff.c which ...
- 2014-06-24T09:04:45-07:00
- Forum: Users
- Topic: Can image be loaded without loading profiles?
- Replies: 7
- Views: 3326
Can image be loaded without loading profiles?
I am encountering some images that contain some very large profiles that I have no need of. Sometimes they fail to load resulting in an exception from Magick::Image.read(), and sometimes they succeed and take up a lot of memory causing my more important allocation of a pixels buffer (that I pass to ...
- 2014-06-24T08:47:05-07:00
- Forum: Users
- Topic: ImageMagick-6.8.9-4.zip has no VisualMagick dir
- Replies: 2
- Views: 1757
Re: ImageMagick-6.8.9-4.zip has no VisualMagick dir
Thanks, I had been accessing the zip from the Download folder rather than the Download\Windows folder.
- 2014-06-23T15:07:32-07:00
- Forum: Users
- Topic: ImageMagick-6.8.9-4.zip has no VisualMagick dir
- Replies: 2
- Views: 1757
ImageMagick-6.8.9-4.zip has no VisualMagick dir
The http://www.imagemagick.org/script/insta ... hp#windows says to "Select the configure workspace from the ImageMagick-6.8.9/VisualMagick/configure folder and press Open" but the latest ImageMagick-6.8.9-4.zip contains no VisualMagick folder. Am I missing something?
- 2014-06-20T13:00:12-07:00
- Forum: Bugs
- Topic: Access Violation when TIFF tag value cannot be allocated
- Replies: 1
- Views: 3258
Access Violation when TIFF tag value cannot be allocated
When TIFF tags are being read and the memory allocation for a tag's data fails, the tag's pointer is correctly set to 0 and the error is noted at that time. However, later in TIFFGetProfiles(), when such a tag is encountered, the 0 pointer is dereferenced, causing an access violation. Adding ...