在 Java 中打开/关闭单个像素或更改颜色
我应该如何打开或关闭每个像素并更改其颜色:-/
How should I turn a each pixel on or off and change its color :-/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我应该如何打开或关闭每个像素并更改其颜色:-/
How should I turn a each pixel on or off and change its color :-/
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果您使用 BufferedImage,则有一个名为 setRGB 的方法应该可以完成您想要的操作。
if you use BufferedImage, there's a method called setRGB which should do what you want.
如果您使用
Graphics 进行正常绘画
(或Graphics2D
) 对象(又名使用 AWT/Swing),然后 绘制单像素线是正常的方法:If you're doing normal painting with a
Graphics
(orGraphics2D
) object (a.k.a using AWT/Swing), then drawing a single-pixel line is the normal way:据我所知,java 中没有绘制像素的方法。你要做的是使用 fillRect 或 drawLine (在 BufferedImage 上),且高度等于 1。预先使用 setRGB 设置颜色。
但是,如果您使用它来创建单个图像(例如分形图片生成器或类似的),那么还有更有效的方法:
There are no methods for drawing pixels, to my knowledge, in java. What you do, is do use fillRect or drawLine (on a BufferedImage), with with and height equal to 1.Use setRGB beforehand to set the color.
However, if you are using this to create a single image, (like a fractal picture generator or similar), then there are much more efficient methods: