0

所以我有一个程序可以从文件夹中提取随机图像并从中创建拼贴画,并将其设置为 Windows 壁纸。这似乎工作正常。所以我想我会设置一个睡眠定时器,让它自动更新,而我不必每半小时运行一次。我这样做了,效果很好,但是我遇到了在开始循环之前没有注意到的内存泄漏问题。我正在尝试处理 GDI+对象,但我不断收到 dispose 不是 GDIplus::Image 成员的错误

我正在将一张图片加载到一个 Image 对象中,然后调整它的大小并将其放入一个图像数组中,然后我想处理第一个图像。然后,我想在处理完其中的图像后处理该数组。

这是通过 VS2005 的旧副本完成的。

#include <windows.h>
#include <objidl.h>
#include <gdiplus.h>
#include <string>
#include <iostream>
#include <vector>
#include <dirent.h>
#include <time.h>
#include <fstream>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
#include "cwp05rnd.h"

using namespace Gdiplus;
using namespace std;
#pragma comment (lib,"Gdiplus.lib")
#pragma comment (lib, "user32.lib")

int main()
{
GdiplusStartupInput gdiplusStartupInput;
ULONG_PTR           gdiplusToken;
HDC                 hdc;
Graphics            graphics(hdc);

GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
CLSID jpegClsid;
GetEncoderClsid(L"image/jpeg", &jpegClsid);

SetCurrentDirectoryA("E:\\Photos");
ofstream outfile;
outfile.open ("outimgs.txt");
ofstream outfile2;
outfile2.open("imgpos.txt");

srand(time(NULL));
init_genrand(time(NULL));

vector<string>  dirlist;
DIR             *d;
struct          dirent *dir;

int i=0;
d=opendir(".");
if (d)
{
    while ((dir=readdir(d)) != NULL)
    {
        i++;
        dirlist.push_back(dir->d_name);
    }
    closedir(d);
}
Image   wp(L"E:\\Dropbox\\Photos\\wallpaper.jpg");
Graphics* wpimage = Graphics::FromImage(&wp);
int r;
int rvsize=100;
int rv[100]={0};
string img;
std::wstring wimg;
const wchar_t* rimg;
double cwidth;
double cheight;
double ratio;
int nheight;
int counter=0;
    int full = 0;
    int tries = 0;
    int hfull = 0;
    int imgnum =0;
    int last=0;
    Image* newpic[10];

    while ( tries <10)
    {
        redo:
        tries++;
        int newrv=0;
        while (newrv ==0)
        {

            r=genrand_int32()%i;
            for (int k=0; k < rvsize; k++)
            {

                if (rv[k] > 0 && rv[k]==r )
                {
                    break;
                }
                if (rv[k]==0 && r < i)
                {
                    newrv =1;
                    rv[k]=r;
                    last=k;
                    break;
                }
                if (rv[k] ==0)
                {
                    break;
                }
            }

        }
        img = dirlist[r];
        if (img[0]=='.')
        {
            newrv=0;
            goto redo;
        }
        wimg = std::wstring(img.begin(),img.end());

        rimg = wimg.c_str();

        Image pic(rimg);

        cwidth = pic.GetWidth();
        cheight = pic.GetHeight();
        if (cheight ==0)
        {
            outfile2 << "error" << img << endl;
            rv[last]=0;
            system("pause");
            goto redo;
        }
        ratio = cwidth/cheight;
        nheight = nwidth/ratio;
        pic.RotateFlip(Rotate180FlipNone);
        pic.RotateFlip(Rotate180FlipNone);
        newpic[imgnum] = pic.GetThumbnailImage(nwidth,nheight,NULL,NULL);
                    delete pic[0];
                    imgnum = imgnum + 1;
        }

然后根据各种随机值在newpic中的图像上进行很长的翻转和旋转。

wpimage->DrawImage(newpic[k],(j*nwidth),(((k+1)*whitespace)+htot),nwidth,nh[k]);
wp.Save(L"C:\\Temp\\wallpaper\\nwallpaper.jpg", &jpegClsid, NULL);
delete newpic;
setWall();
delete wpimage;
delete wp;
return 0;
}

当我尝试删除 Image 对象时,我收到一条错误消息,指出它不能删除不是指针的对象,或者它不能从 GDIplus::Image 转换为 void*

任何意见,将不胜感激。

4

1 回答 1

0

我注意到你有Image pic(rimg); 但你正在做delete pic[0]; pic的不是指针..不是动态分配的或其他东西......也不是数组(或者它可能是......但直觉上我认为没有......)

* 添加 * 哦,是的,如果您已经解决了这个问题,建议您关闭问题或至少提及它...

于 2014-03-04T23:37:05.830 回答