Link to home
Start Free TrialLog in
Avatar of angielim
angielim

asked on

cut and paste a portion of image using region of interest

import an image, select a portion of image, cut or copy that part of image and paste it in new page
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

And your question is..?
Avatar of ZUBAIR
ZUBAIR

Import Image :
File f = new File(path);
            BufferedImage image = ImageIO.read(f);

Cut an Image by taking subimage:
image = image.getSubimage(x, y, width, height);
ASKER CERTIFIED SOLUTION
Avatar of shah1d1698
shah1d1698

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of angielim

ASKER

Hi all,

I need to select a portion of image, cut or copy it, and paste it on the new window using java,
please help me out to do this.

regards,

Try the links I posted.