For scaling down image i use resize
:
int w = myImage.width / 2;
int h = myImage.height / 2;
myImage.resize( w, h );
myImage.allocate( w, h, OF_IMAGE_COLOR_ALPHA);
fbo.allocate( w, h );
Hope this will help .
For scaling down image i use resize
:
int w = myImage.width / 2;
int h = myImage.height / 2;
myImage.resize( w, h );
myImage.allocate( w, h, OF_IMAGE_COLOR_ALPHA);
fbo.allocate( w, h );
Hope this will help .