My project give me 3 images:
- track.jpg (background full size)
- pilote.jpg (40% of full size, position left)
- car.jpg (40% of full size, position right)
Basically I need to get these 3 images resize and reposition it, and finally create a new image.
My code so far:
`
ConvertCmd cmd = new ConvertCmd();
IMOperation op = new IMOperation();
op.addImage("E:/jpeg/background.jpg");
op.resize(800,600);
op.addImage("E:/jpeg/pilote.jpg");
op.addImage("E:/jpeg/car.jpg");
op.compress("JPEG");
op.addImage("E:/thumraca.jpg");
cmd.run(op);
`
How can I position my two images left and right?