如何获取 AWT 组件的像素数据?
我有一个 JLabel 组件,我在其中写入一些文本。我想将其解码为像素阵列并通过 RS-232 接口将其发送到某些外部设备。
如何访问组件或图形对象的像素?
I have a JLabel component to which i write some text. I want to decode it to pixel array and send it via RS-232 interface to some external appliance.
How can i access pixels of Component or Graphics objects?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用机器人是一种方法。这是另一种方法。
机器人可以满足大多数需求,对某些需求更好,但第二种方式的优点是即使在沙盒应用程序中也可以完成。
Using Robot is one way. Here is another way.
Robot is fine for most needs, better for some, but the advantage of the second way is that it can be done even in a sand-boxed app.
使用 Robot 类。以下是如何使用它创建屏幕截图的示例。
Use Robot class. Here's an example how to create a screenshot with it.