zoukankan      html  css  js  c++  java
  • 截图片

     public static Image CutImage(Image img, int width, int height)
            {
                Bitmap image 
    = new Bitmap(img);

                
    int calheight = width * image.Height / image.Width;
                
    int calwidth = height * image.Width / image.Height;

                Image img2;

                
    if (calheight >= height)
                {
                    img2 
    = image.GetThumbnailImage(width, calheight, null, IntPtr.Zero);
                }
                
    else
                {
                    img2 
    = image.GetThumbnailImage(calwidth, height, null, IntPtr.Zero);
                }

                Bitmap bitmap 
    = new Bitmap(img2);
                
    int x = (bitmap.Width - width) / 2;
                
    int y = (bitmap.Height - height) / 2;
                Rectangle cloneRect 
    = new Rectangle(x, y, width, height);
                PixelFormat format 
    = bitmap.PixelFormat;
                Bitmap cloneBitmap 
    = bitmap.Clone(cloneRect, format);

                
    return cloneBitmap;

            }
  • 相关阅读:
    CSRF的安全问题
    preg_replace
    反汇编:虚函数表
    12.Proxy
    JS中的this
    11.Set 和 Map数据结构
    10.symbol
    9.对象的扩展
    test
    ES5支持的方法
  • 原文地址:https://www.cnblogs.com/gateluck/p/1986197.html
Copyright © 2011-2022 走看看