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;

            }
  • 相关阅读:
    MVP 实战
    Model 层
    Presenter 层
    View 层
    DB数据库的基本操作
    MongoDB数据库基本操作
    转换函数
    字符串函数
    空值处理
    Java中使用Redis的几种数据类型总结
  • 原文地址:https://www.cnblogs.com/gateluck/p/1986197.html
Copyright © 2011-2022 走看看