动态创建和渲染具有透明背景的图像,以便与drawImage一起使用
有人可以提供一个示例,说明如何在 Java 中动态创建图像,在其上绘制线条等,然后绘制图像,以便未绘制的区域在绘制过程中保持透明?
Could someone provide an example of how to dynamically create an image in Java, draw lines et cetera on it, and then draw the image so that areas not painted will remain transparent in the drawing process?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以使用
BufferedImage
使用支持透明度的图像类型,例如BufferedImage.TYPE_INT_ARGB
:可以通过调用
BufferedImage.createGraphics
获取Graphics2D< /code> 对象,然后执行一些绘图:
然后,由于
BufferedImage
是Image
可用于使用Graphics.drawImage
接受Image
。One could use a
BufferedImage
with an image type that supports transparency such asBufferedImage.TYPE_INT_ARGB
:One can draw on the
BufferedImage
by callingBufferedImage.createGraphics
to obtain aGraphics2D
object, then perform some drawing:Then, since
BufferedImage
is a subclass ofImage
that can be used to draw onto anotherImage
using one of theGraphics.drawImage
that accepts anImage
.