Search found 4 matches
- 2011-04-18T20:02:23-07:00
- Forum: Developers
- Topic: Using ImageMagick with Dev-C++ on Windows
- Replies: 3
- Views: 9506
Re: Using ImageMagick with Dev-C++ on Windows
Just yesterday we clicked on the Magick++ button workspace. It was auto-converted to VS2010. Next we choose the release version and selected Build. The project compiled and run without complaint. We're not sure why it fails for you. Ok somehow I got it to change. I have about a lot of extra .vcproj ...
- 2011-04-18T18:48:35-07:00
- Forum: Developers
- Topic: Using ImageMagick with Dev-C++ on Windows
- Replies: 3
- Views: 9506
Using ImageMagick with Dev-C++ on Windows
I'm trying to write a C++ program that uses ImageMagick and I can't get it to link without errors. I am on Windows 7 and using the Dev-C++ IDE. I have a linker error for every reference to a Magick++ function, like so: [Linker error] undefined reference to `Magick::Image::Image()' [Linker error ...
- 2011-04-14T16:46:46-07:00
- Forum: Bugs
- Topic: 6.6.5-7-Q16-windows-x64-static crash Windows Web Server 2008
- Replies: 5
- Views: 13603
Re: 6.6.5-7-Q16-windows-x64-static crash Windows Web Server
This problem popped up when we began compiling ImageMagick with Visual Studio 2010. Does imdisplay work if you just launch imdisplay and use the file menu to identify an image file to display? Can you verify the other ImageMagick utilities work? Launch a Command Prompt window and type: convert logo ...
- 2011-04-14T09:17:30-07:00
- Forum: Developers
- Topic: Problem linking Magick++ with gcc - undefined reference.
- Replies: 3
- Views: 15292
Re: Problem linking Magick++ with gcc - undefined reference.
Try this command: g++ `Magick++-config --cxxflags --cppflags` -o CmdLineClient CmdLineClient.cpp `Magick++-config --ldflags --libs` Any chance you could adapt that for someone trying to use ImageMagick in a program being compiled with Dev-C++ in Windows 7? I've been trying to get rid of these ...