您将使用Magick::DrawablePolygon
和的组合Magick::Image.composite
。
创建一个新的蒙版图像,并绘制 n 边形
Magick::Image mask;
mask.draw( Magick::DrawablePolygon( std::list<Magick::Coordinate> ) );
然后只需将蒙版应用于目标图像,并组合现有源。
Magick::Image dest;
dest.composite( Magick::Image, Magick::Geometry, Magick::CompositeOperator );
例子:
#include <iostream>
#include <Magick++.h>
int main(int argc, const char ** argv)
{
Magick::InitializeMagick(*argv);
Magick::Image mask( Magick::Geometry(120,120), Magick::Color("white"));
Magick::Image dest( Magick::Geometry(120,120), Magick::Color("white"));
// Example source image
Magick::Image source;
source.read("rose:");
source.resize(Magick::Geometry(200,120)); // Resize for fun
mask.fillColor("black");
// Define points
std::list<Magick::Coordinate> points;
points.push_back(Magick::Coordinate(10, 10)); // a
points.push_back(Magick::Coordinate(10, 50)); // b
points.push_back(Magick::Coordinate(30, 50)); // c
points.push_back(Magick::Coordinate(30,100)); // d
points.push_back(Magick::Coordinate(75,100)); // e
points.push_back(Magick::Coordinate(75, 30)); // f
points.push_back(Magick::Coordinate(60, 30)); // g
points.push_back(Magick::Coordinate(60, 10)); // h
// Draw Polygon "n-gon"
mask.draw( Magick::DrawablePolygon(points) );
// Extract n-gon from source image to destination image
dest.clipMask(mask);
Magick::Geometry offset(0,0,0,0);
dest.composite( source, offset, Magick::OverCompositeOp );
dest.write("n-gon.png"); // Output
}