C++ API help
Re: C++ API help
Grab the ImageMagick source distribution. In the ImageMagick-6.4.3/Magick++ folder you will find two sub folders, demo and tests. They contain numerous short working programs that illustrate different features of Magick++.
Re: C++ API help
May i know is there any example for PerspectiveDistortion in Magick++?
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: C++ API help
In the Magick++ forum for text effects, there was a use of using Arc distort. Persective is just a different type of distort and you should be able to apply it the same way that Arc was, just with control point parameters rather than angles and radii.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
Re: C++ API help
I tried to search in the forum but could not get anything. Can you pointed out the link please?
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: C++ API help
http://redux.imagemagick.org/discourse- ... =6&t=11586
The post by el_supremo, or the second block of code.
The post by el_supremo, or the second block of code.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
Re: C++ API help
That is the code for Magick Wand, a C API. May i know is there any Magick++, C++ API examples?