1. 程式人生 > 實用技巧 >截圖之後自動識別(OCR)

截圖之後自動識別(OCR)

有個鳥軟體因為做的爛,連匯出都沒有,不得不說現在的識別還是非常好的,特別是截圖的文字,識別率太高了,

然後自己一邊翻頁,一邊截圖識別,十幾下搞完了,截圖和識別還是比較簡單的,主要程式碼放出來

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace COCR
{
    
public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { this.WindowState = FormWindowState.Minimized; this.Hide(); Form2 f2 = new
Form2(this); f2.Show(); } public void settext(string text) { this.textBox1.Text = text; } private void button2_Click(object sender, EventArgs e) { Clipboard.SetText(textBox1.Text); } } }
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;

namespace COCR
{
    public partial class Form2 : Form
    {
        public Form2(Form1 frm)
        {
            
            InitializeComponent();
            frmmain = frm;
            
        }
        public Form2()
        {
            InitializeComponent();
        }
        public Form1 frmmain = null;
        int i = 0;
        Bitmap bit;
        Bitmap bit2;
        Bitmap copy;
        int x;
        int y;
        int xx;
        int yy;
        Pen pen = new Pen(Color.Red, 2);
        Rectangle rect = new Rectangle();
        Graphics g2;
        private void Form2_Load(object sender, EventArgs e)
        {
             
            i++;
            //Opacity = 0.5;
            WindowState = FormWindowState.Minimized;
            FormBorderStyle = FormBorderStyle.None;
            this.Cursor = Cursors.Cross;
            int w = Screen.PrimaryScreen.Bounds.Width;
            int h = Screen.PrimaryScreen.Bounds.Height;
            bit = new Bitmap(w, h);//獲取桌面圖
            Graphics g = Graphics.FromImage(bit);//把圖畫出來
            g.CopyFromScreen(0, 0, 0, 0, new Size(w, h));
            pictureBox1.Image = bit;
            //bit.Save("C:/Users/Administrator/Desktop/區域截圖" + i + ".jpg");
            WindowState = FormWindowState.Maximized;
        }

        private void pictureBox1_MouseClick(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Right)
            {
                frmmain.Show();
                frmmain.WindowState = FormWindowState.Normal;
                this.Close();
                //this.Hide();
                //Form1 f1 = new Form1();
                //f1.Show();
            }
        }

        private void pictureBox1_MouseDown(object sender, MouseEventArgs e)
        {
            x = Math.Abs(e.X);
            y = Math.Abs(e.Y);
        }

        private void pictureBox1_MouseMove(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Left)
            {
                xx = Math.Abs(e.X);
                yy = Math.Abs(e.Y);
                Graphics g = pictureBox1.CreateGraphics();
                rect = new Rectangle(x, y, xx - x, yy - y);
                Refresh();
                g.DrawRectangle(pen, rect);

            }
        }

        private void pictureBox1_MouseUp(object sender, MouseEventArgs e)
        {
            try
            {
                copy = (Bitmap)bit.Clone();
                bit2 = new Bitmap(rect.Width, rect.Height);
                g2 = Graphics.FromImage(bit2);
                g2.DrawImage(copy, new Rectangle(0, 0, rect.Width, rect.Height), rect, GraphicsUnit.Pixel);
                pictureBox1.Image = bit2;
                //bit2.Save("C:/Users/Administrator/Desktop/區域截圖" + i + ".jpg");
                //Clipboard.SetImage(bit2);
                this.Close();
                ocr(imageToByte(bit2));

            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
                Application.Exit();
            }
        }
        private void ocr(byte[] img)
        {
        //百度的
var APP_ID = "aa"; var API_KEY = "aa"; var SECRET_KEY = "aa"; var client = new Baidu.Aip.Ocr.Ocr(API_KEY, SECRET_KEY); client.Timeout = 60000; // 修改超時時間 //var result = client.GeneralBasic(img); JObject json = client.AccurateBasic(img); Console.WriteLine(json); StringBuilder sb = new StringBuilder(); JArray record = (JArray)json["words_result"] ; for (int j = 0; j < record.Count; j++) { sb.Append(record[j]["words"].ToString() + Environment.NewLine ); } //foreach (JProperty jp in record) //{ // sb.Append(jp.Value +"\n"); //} Console.WriteLine(sb); frmmain.settext(sb.ToString ()); frmmain.Show(); frmmain.WindowState = FormWindowState.Normal; } private byte[] imageToByte(System.Drawing.Image _image) { MemoryStream ms = new MemoryStream(); _image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg); return ms.ToArray(); } //將byte[]資料轉換成image private Image byteToImage(byte[] myByte) { MemoryStream ms = new MemoryStream(myByte); Image _Image = Image.FromStream(ms); return _Image; } } }