• 截取部分BMP图像


    方法1:

    resultBitmap.SetPixel(x, y, sourceBitmap.GetPixel(offsetX + x, offsetY+y))

     

     /// <summary>   

     /// get a certain rectangle part of a known graphic   

     /// </summary>   

     /// <param name="bitmapPathAndName">path and name of the source graphic</param>   

    /// <param name="width">width of the part graphic</param>   

    /// <param name="height">height of the part graphic</param>   

    /// <param name="offsetX">the width offset in the source graphic</param>   

    /// <param name="offsetY">the height offset in the source graphic</param>   

    /// <returns>wanted graphic</returns>   

    public Bitmap GetPartOfImage(string bitmapPathAndName, int width, int height,int offsetX,int offsetY)   

    {   

       Bitmap sourceBitmap = new Bitmap(bitmapPathAndName);   

        Bitmap resultBitmap = new Bitmap(width, height);   

        for (int x = 0; x < width; x++)   

        {   

            for (int y = 0; y < height; y++)   

            {   

                if (offsetX + x < sourceBitmap.Size.Width & offsetY + y < sourceBitmap.Size.Height)    

                {   

                    resultBitmap.SetPixel(x, y, sourceBitmap.GetPixel(offsetX + x, offsetY+y));   

                }   

            }   

        }   

        return resultBitmap;   

    }    

          

    方法2:

     

    Graphics g = Graphics.FromImage(resultBitmap)

    g.DrawImage(sourceBitmap, resultRectangle, sourceRectangle, GraphicsUnit.Pixel)

    /// <summary>   

    /// get a certain rectangle part of a known graphic   

    /// </summary>   

    /// <param name="bitmapPathAndName">path and name of the source graphic</param>   

    /// <param name="width">width of the part graphic</param>   

    /// <param name="height">height of the part graphic</param>   

    /// <param name="offsetX">the width offset in the source graphic</param>   

    /// <param name="offsetY">the height offset in the source graphic</param>   

    /// <returns>wanted graphic</returns>   

    public Bitmap GetPartOfImage(string bitmapPathAndName, int width, int height, int offsetX, int offsetY)   

    {   

        Bitmap sourceBitmap = new Bitmap(bitmapPathAndName);   

        Bitmap resultBitmap = new Bitmap(width, height);   

        using (Graphics g = Graphics.FromImage(resultBitmap))   

        {   

            Rectangle resultRectangle = new Rectangle(0, 0, Width, height);   

            Rectangle sourceRectangle = new Rectangle(0+offsetX, 0+offsetY, Width, height);   

            g.DrawImage(sourceBitmap, resultRectangle, sourceRectangle, GraphicsUnit.Pixel);   

        }   

        return resultBitmap;   

    
  • 相关阅读:
    使用Uiautomator语法定位元素时,报错此元素不是一个字符串 is not a string 【已解决】
    真机使用adb命令打开包名报错 java.lang.SecurityException: Permission Denial: starting Intent 【已解决】
    Genymotion安装apk时报错 Failure [INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113] 【已解决】
    python+appium【第四章-adb命令之monkey命令】
    python+appium【第三章-adb命令之日志打印】
    弄明白5种IO模型
    Java网络编程
    Java中抽象类的构造器的作用
    mysql中sum与if,case when 结合使用
    逆向实战 | galgame的汉化研究(新坑)
  • 原文地址:https://www.cnblogs.com/mane/p/2005585.html
Copyright © 2020-2023  润新知