1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
| package release.ocr.baidu;
import java.awt.AWTException; import java.awt.BorderLayout; import java.awt.Color; import java.awt.Dimension; import java.awt.EventQueue; import java.awt.Graphics; import java.awt.Image; import java.awt.Rectangle; import java.awt.Robot; import java.awt.Toolkit; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.awt.event.MouseMotionAdapter; import java.awt.image.BufferedImage; import java.awt.image.RescaleOp; import java.io.File; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Date; import javax.imageio.ImageIO; import javax.swing.JButton; import javax.swing.JFileChooser; import javax.swing.JToolBar; import javax.swing.JWindow; import javax.swing.filechooser.FileNameExtensionFilter; import javax.swing.filechooser.FileSystemView;
public class ScreenShotOCR { static ScreenShotWindow ssw; public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() { @Override public void run() { try { ssw = new ScreenShotWindow(); ssw.setVisible(true); } catch (AWTException e) { e.printStackTrace(); } } }); } public static void notVisiabl() { ssw.setVisible(false); }
}
class ScreenShotWindow extends JWindow { private int orgx, orgy, endx, endy; private BufferedImage image = null; private BufferedImage tempImage = null; private BufferedImage saveImage = null;
private ToolsWindow tools = null;
public ScreenShotWindow() throws AWTException { Dimension d = Toolkit.getDefaultToolkit().getScreenSize(); this.setBounds(0, 0, d.width, d.height);
Robot robot = new Robot(); image = robot .createScreenCapture(new Rectangle(0, 0, d.width, d.height));
this.addMouseListener(new MouseAdapter() { @Override public void mousePressed(MouseEvent e) { orgx = e.getX(); orgy = e.getY();
if (tools != null) { tools.setVisible(false); } } @Override public void mouseReleased(MouseEvent e) { if (tools == null) { tools = new ToolsWindow(ScreenShotWindow.this, e.getX(), e.getY()); } else { tools.setLocation(e.getX(), e.getY()); } tools.setVisible(true); tools.toFront(); } });
this.addMouseMotionListener(new MouseMotionAdapter() {
@Override public void mouseDragged(MouseEvent e) { endx = e.getX(); endy = e.getY();
Image tempImage2 = createImage(ScreenShotWindow.this.getWidth(), ScreenShotWindow.this.getHeight()); Graphics g = tempImage2.getGraphics(); g.drawImage(tempImage, 0, 0, null); int x = Math.min(orgx, endx); int y = Math.min(orgy, endy); int width = Math.abs(endx - orgx) + 1; int height = Math.abs(endy - orgy) + 1; g.setColor(Color.BLUE); g.drawRect(x - 1, y - 1, width + 1, height + 1); saveImage = image.getSubimage(x, y, width, height); g.drawImage(saveImage, x, y, null);
ScreenShotWindow.this.getGraphics().drawImage(tempImage2, 0, 0, ScreenShotWindow.this); } }); }
@Override public void paint(Graphics g) { RescaleOp ro = new RescaleOp(0.8f, 0, null); tempImage = ro.filter(image, null); g.drawImage(tempImage, 0, 0, this); } public void saveImage() throws IOException { JFileChooser jfc = new JFileChooser(); jfc.setDialogTitle("保存");
FileNameExtensionFilter filter = new FileNameExtensionFilter("PNG", "png"); jfc.setFileFilter(filter);
SimpleDateFormat sdf = new SimpleDateFormat("yyyymmddHHmmss"); String fileName = sdf.format(new Date()); File filePath = FileSystemView.getFileSystemView().getHomeDirectory(); File defaultFile = new File( filePath + File.separator + fileName + ".png"); jfc.setSelectedFile(defaultFile);
int flag = jfc.showSaveDialog(this); if (flag == JFileChooser.APPROVE_OPTION) { File file = jfc.getSelectedFile(); String path = file.getPath(); if (!(path.endsWith(".png") || path.endsWith(".PNG"))) { path += ".png"; } ImageIO.write(saveImage, "png", new File(path)); System.exit(0); } } public void baiduOCR() throws IOException { ImageIO.write(saveImage, "png", new File("1.png")); Thread baiduOCR = new Thread(new BaiduOCR("1.png", this)); baiduOCR.start(); } public static void Exit() { System.exit(0); } }
class ToolsWindow extends JWindow { private ScreenShotWindow parent;
public ToolsWindow(ScreenShotWindow parent, int x, int y) { this.parent = parent; this.init(); this.setLocation(x, y); this.pack(); this.setVisible(true); }
private void init() {
this.setLayout(new BorderLayout()); JToolBar toolBar = new JToolBar("Java 截图");
JButton saveButton = new JButton("保存"); saveButton.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { try { parent.saveImage(); } catch (IOException e1) { e1.printStackTrace(); } } }); toolBar.add(saveButton);
JButton baiduOCRButton = new JButton("百度文字识别"); baiduOCRButton.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { try { parent.baiduOCR(); } catch (IOException e1) { e1.printStackTrace(); } } }); toolBar.add(baiduOCRButton);
JButton closeButton = new JButton("退出"); closeButton.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { System.exit(0); } }); toolBar.add(closeButton);
this.add(toolBar, BorderLayout.NORTH); }
}
|