更改字体大小时cimg draw_text内存泄漏

时间:2016-09-26 10:13:58

标签: memory-leaks cimg

我正在使用CImg绘制一个包含一些用户定义大小文本的简单矩形。

为此,我在空CImg上使用draw_text,因为它分配了一个包含文本的确切大小的图像。

但是每次更改字体大小时都会泄漏内存。关于它为何泄漏记忆的任何想法?

CImg<unsigned char> imgtext;
const unsigned char textColor[] = {foreground.r,foreground.g,foreground.b};
const unsigned char textBackgroundColor[] = {background.r,background.g,background.b};
imgtext.draw_text(0,0,label.c_str(),textColor, textBackgroundColor, 1.0F, fontSize);

0 个答案:

没有答案