Search found 2 matches
- 2013-12-05T23:28:25-07:00
- Forum: Magick++
- Topic: Magick++.h for Fedora
- Replies: 1
- Views: 10940
Magick++.h for Fedora
Ive written code on debian using Magick++.h which I got via: `apt-get install libmagick++-dev` Now I am trying to get that same program to compile and link on a Fedora system, but I cannot find Magick++.h I've tried `yum install ImageMagick ImageMagick-devel ImageMagick-c++` but out of all the ...
- 2013-11-07T15:55:31-07:00
- Forum: Magick++
- Topic: How do I use gravity with DrawableText?
- Replies: 0
- Views: 6526
How do I use gravity with DrawableText?
I am trying to place text at the bottom of an image I have called 'desktop'. The following code does not put it where I want. How can I fix it? list<Magick::Drawable> drawList; drawList.push_back( Magick::DrawableGravity(Magick::SouthGravity) ); drawList.push_back( Magick::DrawableFillColor("black ...