bat & C# CLIPIMAGE

@echo off
set "dnfpath=%systemroot%\Microsoft.NET\Framework"
for /f "delims=" %%v in ('dir /ad /b %dnfpath%\v?.*') do (
         if exist "%dnfpath%\%%v\csc.exe" set "cscpath=%dnfpath%\%%v\csc.exe"
)
< "%~f0" more +15 > "%temp%\ClipImage.cs"
%cscpath% /out:"%cd%\ClipImage.exe" "%temp%\ClipImage.cs" 1>nul
ClipImage.exe
ping -n 2 127.1 1>nul
del ClipImage.exe

goto:eof

:ClipImage

using System;
using System.Drawing;
using System.Threading;
using System.Windows.Forms;

public partial class FormImage : Form
{
        private Point position;
        private Rectangle clip;

        private System.ComponentModel.IContainer components = null;

        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
        }

        [STAThread]
        static void Main()
        {
            bool isCreated;
            using (Mutex newMutex = new Mutex(true, @"Local/ClipImage", out isCreated))
            {
                if (isCreated)
                {
                    Application.EnableVisualStyles();
                    Application.Run(new FormImage());
                    newMutex.ReleaseMutex();
                }
            }
       }

        public FormImage()
        {
            InitializeComponent();
            this.TopMost = true;
            this.ShowInTaskbar = false;
            this.DoubleBuffered = true;
            this.FormBorderStyle = FormBorderStyle.None;
            this.Bounds = Screen.GetBounds(this);
            this.TransparencyKey = this.BackColor;
            NotifyIcon notify = new NotifyIcon(this.components);
            notify.Visible = true;
            notify.Icon = SystemIcons.Exclamation;
            notify.Text = "截图工具";
            notify.MouseClick += new MouseEventHandler(notify_MouseClick);
            Environment.CurrentDirectory = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
        }

        protected override void OnMouseDown(MouseEventArgs e)
        {
            base.OnMouseDown(e);
            switch (e.Button)
            {
                case MouseButtons.Left:
                    position = e.Location;
                    break;
                case MouseButtons.Right:
                    if (clip.Width > 1 && clip.Height > 1)
                    {
                        clip.Offset(1, 1);
                        using (Bitmap bmp = new Bitmap(--clip.Width, --clip.Height))
                        using (Graphics g = Graphics.FromImage(bmp))
                        {
                            g.CopyFromScreen(clip.Location, Point.Empty, clip.Size);
                            bmp.Save(string.Format("{0:HH.mm.ss}.jpg", DateTime.Now), System.Drawing.Imaging.ImageFormat.Jpeg);
                        }
                    }
                    clip = Rectangle.Empty;
                    BackgroundImage.Dispose();
                    BackgroundImage = null;
                    break;
            }
        }

        protected override void OnMouseMove(MouseEventArgs e)
        {
            base.OnMouseMove(e);
            if (e.Button == MouseButtons.Left)
            {
                clip.X = Math.Min(position.X, e.X);
                clip.Y = Math.Min(position.Y, e.Y);
                clip.Width = Math.Abs(position.X - e.X);
                clip.Height = Math.Abs(position.Y - e.Y);
                this.Refresh();
            }
        }

        protected override void OnPaint(PaintEventArgs e)
        {
            base.OnPaint(e);
            e.Graphics.DrawRectangle(Pens.Red, clip);
            e.Dispose();
        }

        private void notify_MouseClick(object sender, MouseEventArgs e)
        {
            switch (e.Button)
            {
                case MouseButtons.Left:
                    this.BackgroundImage = new Bitmap(this.Width, this.Height);
                    using (Graphics g = Graphics.FromImage(this.BackgroundImage))
                    {
                        g.CopyFromScreen(Point.Empty, Point.Empty, this.Size);
                    }
                    this.Activate();
                    break;
                case MouseButtons.Right:
                    Application.Exit();
                    break;
            }
        }
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值