Search found 309 matches

by mkoppanen
2009-02-09T04:26:29-07:00
Forum: Bugs
Topic: Minor documentation issue
Replies: 3
Views: 7561

Minor documentation issue

Here is a patch against trunk: Index: magick-image.c =================================================================== --- magick-image.c (revision 14016) +++ magick-image.c (working copy) @@ -3090,13 +3090,15 @@ % const MagickFunction function,const unsigned long number_arguments, % const double ...
by mkoppanen
2009-02-08T16:45:53-07:00
Forum: MagickWand
Topic: Custom memory allocator
Replies: 2
Views: 10757

Re: Custom memory allocator

This is new information to me! I'll test this and report back results. Thanks!
by mkoppanen
2009-02-02T11:43:04-07:00
Forum: MagickWand
Topic: Custom memory allocator
Replies: 2
Views: 10757

Custom memory allocator

Hello Wizards,

Is it possible to provide something like SetMagickMemoryMethods for the MagickWand API? Or is there a way to use it with MagickWand?
by mkoppanen
2009-01-26T10:27:53-07:00
Forum: IMagick
Topic: Imagick::flattenImages crashes script
Replies: 2
Views: 8681

Re: Imagick::flattenImages crashes script

Unable to reproduce with the latest Imagick and ImageMagick 6.4.8-4.
by mkoppanen
2009-01-11T05:45:35-07:00
Forum: IMagick
Topic: All example code gives the same problem?
Replies: 0
Views: 4787

Re: All example code gives the same problem?

Your version of Imagick is simply too old. The object oriented interface was introduced in 2.x.
by mkoppanen
2009-01-03T14:46:21-07:00
Forum: IMagick
Topic: Crash with Imagick::getImageProfile
Replies: 0
Views: 5369

Re: Crash with Imagick::getImageProfile

Committed a fix to CVS. Thank you!
by mkoppanen
2008-12-30T12:13:21-07:00
Forum: Bugs
Topic: segfault in import
Replies: 11
Views: 22212

Re: segfault in import

so ln -s /usr/local/lib/libMagickCore.so.1 /usr/lib/libMagickCore.so.1 (I guess there is a bug somewhere in the configure script?) This sounds more like you don't have /usr/local/lib in your ld.so.conf. You can try something like: echo "/usr/local/lib" > /etc/ld.so.conf.d/usr-local.conf l...
by mkoppanen
2008-12-29T07:02:40-07:00
Forum: Bugs
Topic: Crash when MagickNewImage params are incorrect
Replies: 1
Views: 5482

Crash when MagickNewImage params are incorrect

#include <stdlib.h> #include <wand/MagickWand.h> int main() { MagickWand *wand; PixelWand *color; MagickWandGenesis(); wand = NewMagickWand(); color = NewPixelWand(); PixelSetColor(color, "white"); MagickNewImage(wand, 0, 75, color); MagickWandTerminus(); return 0; } Here is a backtrace: ...
by mkoppanen
2008-12-24T07:36:52-07:00
Forum: IMagick
Topic: imagick raises error
Replies: 3
Views: 10212

Re: imagick raises error

Hello,

those examples are outdated and valid for Imagick 0.9.x
by mkoppanen
2008-12-17T18:38:12-07:00
Forum: IMagick
Topic: Cannot locate header file MagickWand.h
Replies: 1
Views: 6432

Re: Cannot locate header file MagickWand.h

Did you install the ImageMagick -dev package also ? (Which contains the header files needed).
by mkoppanen
2008-11-20T06:12:22-07:00
Forum: IMagick
Topic: Installation problem: Cannot locate header file MagickWand.h
Replies: 3
Views: 14743

Re: Installation problem: Cannot locate header file MagickWand.h

echo "`MagickWand-config --prefix`/include/ImageMagick/wand/MagickWand.h"

does that file exist?
by mkoppanen
2008-11-17T15:28:35-07:00
Forum: IMagick
Topic: ImageMagick and Joomla doesn't work
Replies: 0
Views: 4729

Re: ImageMagick and Joomla doesn't work

This is more of a Joomla question than it is an ImageMagick question.
by mkoppanen
2008-11-15T12:52:16-07:00
Forum: MagickWand
Topic: CMYK PDF
Replies: 0
Views: 5948

CMYK PDF

Hello, delegates.xml <delegate decode="ps:cmyk" stealth="True" command=""gs" -q -dQUIET -dPARANOIDSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=0 "-sDEVICE=pam" -dTextAlphaBits=%u -dGraphicsAlphaBits=%u "-r%s&...
by mkoppanen
2008-11-06T03:32:14-07:00
Forum: MagickWand
Topic: MSL through MagickWand API
Replies: 10
Views: 36068

Re: MSL through MagickWand API

I figured out my problem. My MSL file had one space before the <?xml declaration so the whole operation died silently.

Thanks for the assistance guys!
by mkoppanen
2008-11-05T14:57:56-07:00
Forum: MagickWand
Topic: MSL through MagickWand API
Replies: 10
Views: 36068

Re: MSL through MagickWand API

No you do not need the conjure utility. We were smart enough in the design to make MSL a coder which means it can be interpreted by any ImageMagick read method. msl.c: #include <stdio.h> #include <stdlib.h> #include <wand/MagickWand.h> int main() { MagickWand *wand = NewMagickWand(); if (!MagickRea...