zoukankan      html  css  js  c++  java
  • [C#] Image 转换成 Icon

            /// <summary>
            /// Converts an image into an icon.
            /// </summary>
            /// <param name="img">The image that shall become an icon</param>
            /// <param name="size">The width and height of the icon. Standard
            /// sizes are 16x16, 32x32, 48x48, 64x64.</param>
            /// <param name="keepAspectRatio">Whether the image should be squashed into a
            /// square or whether whitespace should be put around it.</param>
            /// <returns>An icon!!</returns>
            private Icon MakeIcon(Image img, int size, bool keepAspectRatio)
            {
                Bitmap square = new Bitmap(size, size); // create new bitmap
                Graphics g = Graphics.FromImage(square); // allow drawing to it

                int x, y, w, h; // dimensions for new image

                if (!keepAspectRatio || img.Height == img.Width)
                {
                    // just fill the square
                    x = y = 0; // set x and y to 0
                    w = h = size; // set width and height to size
                }
                else
                {
                    // work out the aspect ratio
                    float r = (float)img.Width / (float)img.Height;

                    // set dimensions accordingly to fit inside size^2 square
                    if (r > 1)
                    { // w is bigger, so divide h by r
                        w = size;
                        h = (int)((float)size / r);
                        x = 0; y = (size - h) / 2; // center the image
                    }
                    else
                    { // h is bigger, so multiply w by r
                        w = (int)((float)size * r);
                        h = size;
                        y = 0; x = (size - w) / 2; // center the image
                    }
                }

                // make the image shrink nicely by using HighQualityBicubic mode
                g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
                g.DrawImage(img, x, y, w, h); // draw image with specified dimensions
                g.Flush(); // make sure all drawing operations complete before we get the icon

                // following line would work directly on any image, but then
                // it wouldn't look as nice.
                return Icon.FromHandle(square.GetHicon());
            }

    -----
  • 相关阅读:
    array_intersect_ukey — 用回调函数比较键名来计算数组的交集
    array_intersect_uassoc — 带索引检查计算数组的交集,用回调函数比较索引
    array_intersect_key — 使用键名比较计算数组的交集
    array_intersect_assoc — 带索引检查计算数组的交集
    array_flip — 交换数组中的键和值
    array_filter — 用回调函数过滤数组中的单元
    array_fill — 用给定的值填充数组
    array_fill_keys — 使用指定的键和值填充数组
    array_diff — 计算数组的差集
    array_diff_ukey — 用回调函数对键名比较计算数组的差集
  • 原文地址:https://www.cnblogs.com/boneking/p/1728643.html
Copyright © 2011-2022 走看看