本文整理汇总了C++中GImage::boxFill方法的典型用法代码示例。如果您正苦于以下问题:C++ GImage::boxFill方法的具体用法?C++ GImage::boxFill怎么用?C++ GImage::boxFill使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GImage
的用法示例。
在下文中一共展示了GImage::boxFill方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: finder
// static
void GSubImageFinder2::test()
{
// Make some random image
GImage foo;
foo.setSize(256, 256);
foo.clear(0xff000000);
foo.boxFill(13, 8, 12, 17, 0xff808030);
foo.boxFill(8, 13, 10, 9, 0xff407040);
foo.boxFill(20, 20, 220, 220, 0xffffffee);
// Make the finder
GSubImageFinder2 finder(&foo);
// Make a sub-image
GRect r2(0, 0, 256, 256);
GRect r;
r.x = 13;
r.y = 17;
r.w = 32;
r.h = 32;
GImage bar;
bar.setSize(32, 32);
bar.blit(0, 0, &foo, &r);
// Find the sub-image
r.x = 0;
r.y = 0;
int x, y;
finder.findSubImage(&x, &y, &bar, &r);
if(x != 13 || y != 17)
throw "wrong answer";
}