Search found 2 matches
- 2015-06-29T01:10:43-07:00
- Forum: Magick++
- Topic: Magick++ Error: must specify image size
- Replies: 2
- Views: 13439
Re: Magick++ Error: must specify image size
That is one of the reasons I am so confused. I am definitely testing the right executable. I compile my program (without errors) which is testMagick.cpp, and execute it using ./testMagick. Furthermore, "test.bmp" is not something I've EVER seen before! I've never made or touched or seen a file like ...
- 2015-06-28T23:59:15-07:00
- Forum: Magick++
- Topic: Magick++ Error: must specify image size
- Replies: 2
- Views: 13439
Magick++ Error: must specify image size
Currently, I am trying to run a simple Magick++ program that opens an image file as per a tutorial's instructions: #include <Magick++.h> #include <iostream> using namespace std; using namespace Magick; int main(int argc, char **argv) { InitializeMagick(*argv); Image image("chitanda.jpg"); return 0 ...