Java padding image

后端 未结 3 1228
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-13 21:38

I am working on creating an online image editing tool.Looking for some refernce how can I add an image with white space on right side.For example see this image

3条回答
  •  灰色年华
    2021-02-13 22:28

    Create a new BufferedImage object of the right size; use Graphics.fillRect() to paint it white; draw the image into the top-left corner with drawImage(); then save your new image.

提交回复
热议问题