Search found 13 matches
- 2015-08-11T14:43:58-07:00
- Forum: Developers
- Topic: Provide a stable URL for latest binary downloads?
- Replies: 4
- Views: 5271
Re: Provide a stable URL for latest binary downloads?
But I might look into the GitHub releases thing. Thanks for the tip!
- 2015-08-11T14:32:36-07:00
- Forum: Developers
- Topic: Provide a stable URL for latest binary downloads?
- Replies: 4
- Views: 5271
Re: Provide a stable URL for latest binary downloads?
We only keep one copy of the Windows and Linux binary distribution. Right. What I'm asking is this: in addition to the copy that's named `ImageMagick-6.9 .1-10 -Q16-HDRI-x86-dll.exe`, can you also have a symlink to it with a stable name (url) like `ImageMagick-6.9- latest -Q16-HDRI-x86-dll.exe ...
- 2015-08-11T11:13:05-07:00
- Forum: Developers
- Topic: Provide a stable URL for latest binary downloads?
- Replies: 4
- Views: 5271
Provide a stable URL for latest binary downloads?
I'm the principal maintainer for the "Images.jl" package for the Julia programming language. We wrap parts of `libmagickwand` for I/O. Our Windows users have episodically had problems installing our package, and usually these failures happen because it fails to download the appropriate ImageMagick ...
- 2014-06-10T05:00:38-07:00
- Forum: Bugs
- Topic: ConstituteImage broken for grayscale?
- Replies: 6
- Views: 7121
Re: ConstituteImage broken for grayscale?
It looks like it works properly if I add
after calling `MagickConstituteImage`. This seems to be different behavior than either the current version or the one shipped with Ubuntu 12.04, so it seems that it should still be viewed as a bug.
Code: Select all
MagickSetImageColorspace(magick_wand, GRAYColorspace);
- 2014-06-10T04:51:04-07:00
- Forum: Bugs
- Topic: ConstituteImage broken for grayscale?
- Replies: 6
- Views: 7121
Re: ConstituteImage broken for grayscale?
It's a grayscale image, won't that be problematic? (EDIT: meaning, if I then write the wand as an image file?)
- 2014-06-10T04:22:10-07:00
- Forum: Bugs
- Topic: ConstituteImage broken for grayscale?
- Replies: 6
- Views: 7121
Re: ConstituteImage broken for grayscale?
That's great to hear it's working in the current version. I suspect upgrading mid-release from 6.7->6.8 will be too big of a leap for Ubuntu, so I'm grateful that you're also looking into what's wrong with their version.
- 2014-06-10T03:53:45-07:00
- Forum: Bugs
- Topic: ConstituteImage broken for grayscale?
- Replies: 6
- Views: 7121
ConstituteImage broken for grayscale?
Using the version of ImageMagick distributed with Ubuntu 14.04 (`8:6.7.7.10-6ubuntu3`), the following code #include <stdio.h> #include <stdint.h> #include <wand/MagickWand.h> /* uint8_t data[4] = {156, 230, 5, 238}; */ uint8_t data[4] = {0x9c, 0xe6, 0x05, 0xee}; int main() { printf("%d %d %d %d\n ...
- 2014-05-11T10:52:05-07:00
- Forum: Bugs
- Topic: multi-page tiff: excessive memory usage
- Replies: 5
- Views: 6464
Re: multi-page tiff: excessive memory usage
If it's using 16-bit for each value, then you'd expect 8 bytes per pixel if it opens an R, G, B, and A channel for each image. That's quite different from 14.
- 2013-03-10T04:03:28-07:00
- Forum: Users
- Topic: Extracting colormap and gray/alpha information
- Replies: 10
- Views: 10088
Re: Extracting colormap and gray/alpha information
Hmm, I realized there's another issue with the second question: if one wants to write an image that has both a gray channel and an alpha channel, that would seem to require two calls to convert. But the second call will overwrite the file produced by the first one, correct? Or is there a way to ...
- 2013-03-08T03:20:36-07:00
- Forum: Users
- Topic: Extracting colormap and gray/alpha information
- Replies: 10
- Views: 10088
Re: Extracting colormap and gray/alpha information
...and yes, identify -verbose makes it clear that these are stored in the image separately. I just don't know how you ask for them directly.
- 2013-03-08T03:19:03-07:00
- Forum: Users
- Topic: Extracting colormap and gray/alpha information
- Replies: 10
- Views: 10088
Re: Extracting colormap and gray/alpha information
To clarify, index/colormap refer to the following: let's say I have an RGB image, of size 800x600, that I've created with a drawing program. Because my drawing is not a full-realism painting, it actually only has 5 distinct colors in it. Rather than storing the RGB information for each pixel, I ...
- 2013-03-07T10:07:54-07:00
- Forum: Users
- Topic: Extracting colormap and gray/alpha information
- Replies: 10
- Views: 10088
Re: Extracting colormap and gray/alpha information
I'd rather just get the gray values if it's a gray image.
But question 2 is not nearly as important as question 1; I can certainly live with two calls to convert to extract gray and alpha separately.
But question 2 is not nearly as important as question 1; I can certainly live with two calls to convert to extract gray and alpha separately.
- 2013-03-07T08:22:34-07:00
- Forum: Users
- Topic: Extracting colormap and gray/alpha information
- Replies: 10
- Views: 10088
Extracting colormap and gray/alpha information
I'm using ImageMagick to import image data into Julia (a new programming language). I easily got the basics working, but I'm having some trouble with the more subtle issues: For indexed images (i.e., images with a colormap), I'd like to separately extract both the index and the colormap. I think I ...