2007-08-20

Resize image using Victor image library

// source: imgbuf_ptr , destination: img_resize

imgdes *img_resize;
img_resize = new imgdes;
allocimage(img_resize,320,240, 24); // resize to 320x240

resize(imgbuf_ptr, img_resize);
savejpg(filepath,img_resize,85);

if(img_resize)
{

freeimage(img_resize);
delete img_resize;
img_resize = NULL;

}

No comments:

Post a Comment