Search found 11064 matches

by magick
2006-03-17T08:57:09-07:00
Forum: Users
Topic: Fonts, Aliasing, Transparency 6.2.5 vs 6.2.6
Replies: 9
Views: 33121

IE 7.0 Beta 2 supports PNG transparency.

Do help further we need to reproduce the problem. Post a command line or script we can use to produce the results you get and we will try to come up with a reasonable solution.
by magick
2006-03-17T08:51:31-07:00
Forum: Developers
Topic: Rendering intent
Replies: 0
Views: 12904

The MagickWand API provides MagickSetImageRenderingIntent() to permit you to set the rendering intent. The MagickCore API requires you set it directly (e.g. image->rendering_intent=PerceptualIntent). We're not sure if its possible to get/set the rendering intent with JMagick, however, the source is ...
by magick
2006-03-16T20:15:37-07:00
Forum: Bugs
Topic: Problem compiling ImageMagick-6.2.6 on Solaris 8
Replies: 4
Views: 24177

We haven't compile ImageMagick under Solaris 8 in about 7 years so we have no advice to give you.
by magick
2006-03-16T18:36:01-07:00
Forum: Users
Topic: Fonts, Aliasing, Transparency 6.2.5 vs 6.2.6
Replies: 9
Views: 33121

Now try saving to PNG instead. The problem with GIF is there is only one level of transparency and no one algorithm can produce "good" results for all images. You may get improved results by adding -fuzz 50% to your command line. Change the 50 up and down until you get reasonable results.
by magick
2006-03-16T18:30:28-07:00
Forum: Bugs
Topic: Problem compiling ImageMagick-6.2.6 on Solaris 8
Replies: 4
Views: 24177

We do not have access to Solaris 8, just Solaris 10 and ImageMagick compiles fine under Solaris 10.
by magick
2006-03-16T07:56:19-07:00
Forum: Users
Topic: extracting channels from a PDF
Replies: 6
Views: 26891

And that's why we call it beta. Edit magick/layers.c and change 'static MagickExport' to just 'static'. If that fails, grab the source from ImageMagick-6.2.6-3 and replace coders/pdf.c with the version from ImageMagick-6.2.6-4 Beta.
by magick
2006-03-16T07:48:58-07:00
Forum: Users
Topic: Many files created in /tmp
Replies: 2
Views: 15728

We have not experienced left-over temporary files so currently we have no suggestions why they remain. You could always set the environment variable MAGICK_DEBUG to all or trace to debug the situation. The area limit means if any one image exceeds this limit, it is automatically cached to disk. This...
by magick
2006-03-15T19:58:30-07:00
Forum: Users
Topic: Help finding magickwand lib after linux debian install
Replies: 1
Views: 12647

The easiest solution would be to download the source from ftp://ftp.imagemagick.org/pub/ImageMagick and build: tar xvfz ImageMagick-6.2.6-4.tar.gz cd ImageMagick-6.2.6 ./configure --enable-delegate-build --enable-shared --disable-static \ --with-modules --with-quantum-depth=16 --enable-ltdl-convenie...
by magick
2006-03-15T18:26:29-07:00
Forum: Users
Topic: Help finding magickwand lib after linux debian install
Replies: 1
Views: 12647

The MagickWand library should be located here:
  • /usr/lib/libWand.*
by magick
2006-03-15T16:49:39-07:00
Forum: Users
Topic: How to convert in memory jpeg to data type MagicWand
Replies: 0
Views: 9615

Use MagickReadImageBlob() to read an image from memory.
by magick
2006-03-15T10:53:05-07:00
Forum: Users
Topic: extracting channels from a PDF
Replies: 6
Views: 26891

There is patch that is required for this to work properly. The patch will be in ImageMagick 6.2.6-5 Beta available tommorrow at ftp://ftp.imagemagick.org/pub/ImageMagick/beta.
by magick
2006-03-15T10:38:32-07:00
Forum: Users
Topic: extracting channels from a PDF
Replies: 6
Views: 26891

We need to put a small patch in ImageMagick 6.2.6-5 Beta and with it you could use this command to produce a CMYK image from a RGB PDF:
  • convert -colorspace CMYK image.pdf cmyk.jpg
by magick
2006-03-15T08:50:45-07:00
Forum: Users
Topic: extracting channels from a PDF
Replies: 6
Views: 26891

It appears your PDF is not CMYK or at least ImageMagick interprets it as RGB. ImageMagick must find DeviceCMYK in the image file to interpret it as CMYK. Post a URL to your image so we can confirm.
by magick
2006-03-15T08:40:15-07:00
Forum: Users
Topic: Many files created in /tmp
Replies: 2
Views: 15728

On our server, ImageMagick creates a lot of such temporary files that remains behind, with a size of 0 bytes. The ImgeMagick library (called through a C++ interface) sreturns properly each time, so we should not see this files remaining. Agreed. What version of ImageMagick are you using? See if the...
by magick
2006-03-15T08:19:03-07:00
Forum: Users
Topic: assert failure in DestroyImageList (via montageImages)
Replies: 1
Views: 12400

Instead of futzing with your code, we'll just post code that works: #include <Magick++.h> #include <string> #include <iostream> #include <list> #include <vector> using namespace std; using namespace Magick; int main( int /*argc*/, char **argv) { InitializeMagick(""); int failures=0; try { ...