Search found 6 matches

by mike
2012-07-19T02:14:09-07:00
Forum: Magick++
Topic: Magick++ unhandled exception
Replies: 8
Views: 25233

Re: Magick++ unhandled exception

As you can see in the output, you get warnings about inconsistent names for your libraries : C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(990,5): warning MSB8012: TargetPath(C:\SharedLibs\ImageMagick-windows\ImageMagick-6.7.8\VisualMagick\zlib\..\lib\CORE_zlib.dll) does not...
by mike
2012-07-17T07:21:46-07:00
Forum: Magick++
Topic: Magick++ unhandled exception
Replies: 8
Views: 25233

Re: Magick++ unhandled exception

Do you get any warnings during the compilation or linking process ? Can you post the list of LIB files being built ?
by mike
2012-07-16T09:26:45-07:00
Forum: Magick++
Topic: Magick++ unhandled exception
Replies: 8
Views: 25233

Re: Magick++ unhandled exception

I believe that the reason why you are missing those .lib files is that they weren't built because the project setup is broken. You will definitely need the coders to open any format. Can you provide the compiler/linker output ? Also, since you can't find those project files, what projects is the sol...
by mike
2012-07-16T06:10:33-07:00
Forum: Magick++
Topic: Magick++ unhandled exception
Replies: 8
Views: 25233

Re: Magick++ unhandled exception

I had a similar problem and the solution was to reconfigure the VS project. The change that was required was reported as a warning and it had to do with the constants used by the configure/generate project script. In one of VisualMagick's project settings, for example CORE_Magick++, go to the "...
by mike
2012-07-16T04:23:25-07:00
Forum: Magick++
Topic: Read function of ImageMagick throws Access violation error.
Replies: 4
Views: 22862

Re: Read function of ImageMagick throws Access violation err

From the Magick++ C++ API documentation : Note, under Windows (and possibly the Mac) it may be necessary to initialize the ImageMagick library prior to using the Magick++ library. This initialization is performed by passing the path to the ImageMagick DLLs (assumed to be in the same directory as you...
by mike
2012-07-09T01:35:22-07:00
Forum: Magick++
Topic: Posterize method is missing in the Magick++ API
Replies: 0
Views: 5856

Posterize method is missing in the Magick++ API

Hi, I would like to use posterization of the image in my program, but unfortunately I don't seem to be able to find an appropriate method in the Magick++ API . I can find the method in the MagickWand API#MagickPosterizeImage , but for the project I'm working on I would prefer to use OOP. Am I lookin...