Search found 12 matches
- 2013-05-15T07:43:24-07:00
- Forum: Users
- Topic: What hardware for fast Imagemagick computer
- Replies: 9
- Views: 17126
Re: What hardware for fast Imagemagick computer
Removing the '_stdcall' allows compilation to finish.
- 2013-05-15T07:35:08-07:00
- Forum: Users
- Topic: What hardware for fast Imagemagick computer
- Replies: 9
- Views: 17126
Re: What hardware for fast Imagemagick computer
The README for the code mentions things that I have no idea what are, and seem to refer to something called VisualMagick. So ignoring that, and untaring the files into the source tree, the compile fails. make[2]: Entering directory `/mnt/imaging/cuda/ImageMagick-6.8.5-6' CC magick/magick ...
- 2013-05-13T11:18:23-07:00
- Forum: Users
- Topic: What hardware for fast Imagemagick computer
- Replies: 9
- Views: 17126
Re: What hardware for fast Imagemagick computer
From that link I gather that:
- the code is not in trunk; it still needs to be patched in
- the code only works for jpeg images.
Is this correct?
- the code is not in trunk; it still needs to be patched in
- the code only works for jpeg images.
Is this correct?
- 2013-05-13T07:49:31-07:00
- Forum: Users
- Topic: What hardware for fast Imagemagick computer
- Replies: 9
- Views: 17126
Re: What hardware for fast Imagemagick computer
Has this release happened?
- 2012-09-18T07:50:06-07:00
- Forum: Bugs
- Topic: 4meg image creates multi-gigabyte temp file & crashes
- Replies: 5
- Views: 10329
Re: 4meg image creates multi-gigabyte temp file & crashes
O.K., good ideas. thanks.
- 2012-09-18T07:02:13-07:00
- Forum: Bugs
- Topic: 4meg image creates multi-gigabyte temp file & crashes
- Replies: 5
- Views: 10329
4meg image creates multi-gigabyte temp file & crashes
I process lots of images. Last week I was trying to create thumbnails for about 3.2 million PNG line art images. Most of these images are fairly small in size (they are bi-toanl, and in the 10's of k). I wrote a script to convert the images. It kept crashing. At first, I thought it was something ...
- 2011-05-20T05:26:36-07:00
- Forum: Magick++
- Topic: Histrogram with PythonMagick?
- Replies: 0
- Views: 9488
Histrogram with PythonMagick?
My understanding is that PythonMagick exposes Magick++. From within python, is there a way to get the histogram? I need this because I have lots of TIFF images that report tiff:photometric: min-is-white even when the histogram is: Histogram: 8874236: ( 0, 0, 0) #000000 black 621964: (255,255,255 ...
- 2011-04-14T12:56:35-07:00
- Forum: Bugs
- Topic: PythonMagick fails to configure
- Replies: 5
- Views: 13415
PythonMagick fails to configure
The latest download of PythonMagick fails to configure with:
checking for a Python interpreter with version >= 3.1... none
configure: error: no suitable Python interpreter found
Does it really require a version of Python at least 3.1?
checking for a Python interpreter with version >= 3.1... none
configure: error: no suitable Python interpreter found
Does it really require a version of Python at least 3.1?
- 2011-04-14T11:47:51-07:00
- Forum: Magick++
- Topic: Why does backgroundColor() not match identify -verbose?
- Replies: 1
- Views: 10840
Why does backgroundColor() not match identify -verbose?
I have several black & white images. If I run identify -verbose, Background Color: is correct; white when it is white, and black when it is black. However, when I use backgroundColor().to_std_string() always returns #FFFFFFFFFFFF. Moreover, I can do image.negate() and then the backgroundColor().to ...
- 2011-04-14T11:16:27-07:00
- Forum: Magick++
- Topic: Accessing image attributes?
- Replies: 3
- Views: 16838
Re: Accessing image attributes?
Thanks, that's it. Now if I can only figure out why backgroundColor is returning what it is...magick wrote:Use image.attribute('tiff:document), for example, to get the TIFF:DOCUMENT property as a std::string.
- 2011-04-14T11:13:03-07:00
- Forum: Magick++
- Topic: Accessing image attributes?
- Replies: 3
- Views: 16838
Re: Accessing image attributes?
Oddly, image..backgroundColor().to_std_string() always returns #FFFFFFFFFFFF regardless of the actual background of the image.
- 2011-04-14T10:54:47-07:00
- Forum: Magick++
- Topic: Accessing image attributes?
- Replies: 3
- Views: 16838
Accessing image attributes?
I'm trying to access the information about an image; basically the stuff that gets printed to stdout from identify -verbose. Specifically, from this snippit: Background color: black Compression: Zip Properties: date:create: 2011-04-14T12:51:38-04:00 date:modify: 2011-04-14T12:51:38-04:00 signature ...