Search found 6 matches

by bert.laverman
2014-03-16T04:26:38-07:00
Forum: Users
Topic: Simple HowTo for Windows/VS2012 wanted
Replies: 8
Views: 4688

Re: Simple HowTo for Windows/VS2012 wanted

Did you enable OpenMP? We recently fixed a deadlock that occurred when the code was build on Windows without OpenMP. Can you try to enable this and see if it works?
Ah, I disabled it to get a "Lean and Mean" build. Retested and it now works.

Mijn dank is groot...

Bert
by bert.laverman
2014-03-16T03:07:33-07:00
Forum: Users
Topic: Simple HowTo for Windows/VS2012 wanted
Replies: 8
Views: 4688

Re: Simple HowTo for Windows/VS2012 wanted

Ok, something basic is not working for me. - Built the static MT DLL version without errors. Test program hangs in the Magick::InitializeMagick() method, while trying to acquire a lock. This is so deep in the basic ImageMagick stuff I'm not going to waste time on it, because I don't have the ...
by bert.laverman
2014-03-11T00:49:27-07:00
Forum: Users
Topic: Simple HowTo for Windows/VS2012 wanted
Replies: 8
Views: 4688

Re: Simple HowTo for Windows/VS2012 wanted

Ok, update. That build error was most likely the result of a configure-build-clean-reconfigure-rebuild. A wipe-unzip-configure-build cycle gave no errors. My static vs DLL confusion turns out to be ImageMagick libs vs C/C++ runtime: "static MT DLL" means ImageMagick as .LIB's, C/C++ runtime as DLL's ...
by bert.laverman
2014-03-10T07:34:15-07:00
Forum: Users
Topic: Simple HowTo for Windows/VS2012 wanted
Replies: 8
Views: 4688

Re: Simple HowTo for Windows/VS2012 wanted

The STATIC_MAGICK flag will enable the following: #if defined(MAGICKCORE_BZLIB_DELEGATE) # pragma comment(lib, "CORE_RL_bzlib_.lib") #endif This will tell VisualStudio to automatically link CORE_RL_bzlib_.lib. All the necessary libraries will be linked depending on the delegates you enable in ...
by bert.laverman
2014-03-10T04:21:07-07:00
Forum: Users
Topic: Simple HowTo for Windows/VS2012 wanted
Replies: 8
Views: 4688

Re: Simple HowTo for Windows/VS2012 wanted

If you want to use Magick++ with VS2012 you will have to build it from source. The libraries that come with the installer are from VS2010. Ok, I did get that, although the build failed for one component. However, since a number of demo applications built successfully, I thought I had enough to ...
by bert.laverman
2014-03-09T06:02:27-07:00
Forum: Users
Topic: Simple HowTo for Windows/VS2012 wanted
Replies: 8
Views: 4688

Simple HowTo for Windows/VS2012 wanted

I have downloaded ImageMagick and succeeded in building it, but am totally lost about how to write a simple test application with Magick++. Can some kind soul enlighten me: 1) Do I actually need to install ImageMagick with all bells and whistles, or is there a simple developer install possible with ...