Topic: 怎么用SWT做屏幕区域截图?

  Print this page

1.怎么用SWT做屏幕区域截图? Copy to clipboard
Posted by: pigypig
Posted on: 2006-03-30 09:57

据说SWT速度快,请大哥们指教。
因为小弟刚初学,想借问题学习技术,最好附上源码。

2.Re:怎么用SWT做屏幕区域截图? [Re: pigypig] Copy to clipboard
Posted by: brucehu
Posted on: 2006-06-23 11:14

java中有一个类可以实现屏幕区域截图,你google一下,好像是叫Robot类有抓屏幕的功能,返回BufferedImage,然后和swt结合一下,可以实现

3.Re:怎么用SWT做屏幕区域截图? [Re: pigypig] Copy to clipboard
Posted by: yipsilon
Posted on: 2006-06-29 15:45

SWT的。


public static Image getScreen(int x, int y, int width, int height) {
Display display = Display.getDefault();
Rectangle rectangle = new Rectangle(0, 0, width, height);
Image image = new Image(display, rectangle);
GC gc = new GC(display);
gc.copyArea(image, x, y);
gc.dispose();
return image;
}

4.Re:怎么用SWT做屏幕区域截图? [Re: pigypig] Copy to clipboard
Posted by: fighttodeath
Posted on: 2006-06-29 19:03

兄弟。。
你的代码怕是调不通哦。

5.Re:怎么用SWT做屏幕区域截图? [Re: pigypig] Copy to clipboard
Posted by: yipsilon
Posted on: 2006-07-01 20:32

import 相关的类就可以了, Eclipse IDE 中使用 Ctrl+Shift+O 自动导入。


   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923