Search found 1 match
- 2011-04-21T00:30:36-07:00
- Forum: Magick++
- Topic: Help needed: Linking error on basic program
- Replies: 2
- Views: 14993
Help needed: Linking error on basic program
Hello, This is the program I am trying to run just to test if my installation of magick++ worked. #include<Magick++.h> #include<iostream> using namespace std; using namespace Magick; void main() { Image master; master.read("test.jpg"); master.display(); master.write("Success.jpg"); } The compiling ...