Image resized by 50%
in
Programming Questions
•
2 years ago
I need to:
1- grab an image from part of the window
2- shrink that image by 50% (just as can be done in Microsoft Paint by using resize)
3- put that image back somewhere in the window
I can do "1-" using
PImage savepic = get(x0,y0,dx,dy);
How about 2-?
Is there some ready-made function to reduce an image?
1