简体   繁体   English

在添加C#之前图像已调整大小

[英]image is getting resized before adding c#

Am working in windows form.I have an image. 我正在Windows窗体中工作。我有一个图像。 Its size is 960*1280. 尺寸为960 * 1280。 在此处输入图片说明

When i tried to add this image to my picture box at run time. 当我尝试在运行时将此图像添加到我的图片框中时。 the image is getting rotated and its size of the image is 1280*960. 图片正在旋转,其尺寸为1280 * 960。

在此处输入图片说明

my aim is to resize the image to 100*100 and then add to picture box. 我的目的是将图像调整为100 * 100,然后添加到图片框中。 i don't want that image to get rotated. 我不希望该图像旋转。 Can you suggest me some ideas? 你能给我一些建议吗?

put this in a class file and use the below resizer code 将其放在类文件中,并使用以下调整大小代码

 public class ImageResizer
{
    private int allowedFileSizeInByte;
    private string sourcePath;
    private string destinationPath;

    public ImageResizer()
    {

    }

    public ImageResizer(int allowedSize, string sourcePath, string destinationPath)
    {
        allowedFileSizeInByte = allowedSize;
        this.sourcePath = sourcePath;
        this.destinationPath = destinationPath;
    }

    public void ScaleImage()
    {
        using (MemoryStream ms = new MemoryStream())
        {
            using (FileStream fs = new FileStream(sourcePath, FileMode.Open))
            {
                Bitmap bmp = (Bitmap)Image.FromStream(fs);
                SaveTemporary(bmp, ms, 100);

                while (ms.Length < 0.9 * allowedFileSizeInByte || ms.Length > allowedFileSizeInByte)
                {
                    double scale = Math.Sqrt((double)allowedFileSizeInByte / (double)ms.Length);
                    ms.SetLength(0);
                    bmp = ScaleImage(bmp, scale);
                    SaveTemporary(bmp, ms, 100);
                }

                if (bmp != null)
                    bmp.Dispose();
                SaveImageToFile(ms);
            }
        }
    }

    public byte[] GetScaledImage(int allowedSize, string sourcePath)
    {
        allowedFileSizeInByte = allowedSize;
        this.sourcePath = sourcePath;
        //this.destinationPath = destinationPath;

        using (MemoryStream ms = new MemoryStream())
        {
            using (FileStream fs = new FileStream(sourcePath, FileMode.Open))
            {
                Bitmap bmp = (Bitmap)Image.FromStream(fs);
                SaveTemporary(bmp, ms, 100);

                while (ms.Length < 0.9 * allowedFileSizeInByte || ms.Length > allowedFileSizeInByte)
                {
                    double scale = Math.Sqrt((double)allowedFileSizeInByte / (double)ms.Length);
                    ms.SetLength(0);
                    bmp = ScaleImage(bmp, scale);
                    SaveTemporary(bmp, ms, 100);
                }

                if (bmp != null)
                    bmp.Dispose();

                Byte[] buffer = null;

                if (ms != null && ms.Length > 0)
                {
                    ms.Position = 0;
                    buffer = new byte[ms.Length];
                    ms.Read(buffer, 0, buffer.Length);
                }

                return buffer;
            }
        }
    }

    private void SaveImageToFile(MemoryStream ms)
    {
        byte[] data = ms.ToArray();

        using (FileStream fs = new FileStream(destinationPath, FileMode.Create))
        {
            fs.Write(data, 0, data.Length);
        }
    }

    private void SaveTemporary(Bitmap bmp, MemoryStream ms, int quality)
    {
        EncoderParameter qualityParam = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, quality);
        var codec = GetImageCodecInfo();
        var encoderParams = new EncoderParameters(1);
        encoderParams.Param[0] = qualityParam;

        if (codec != null)
            bmp.Save(ms, codec, encoderParams);
        else
            bmp.Save(ms, GetImageFormat());
    }

    public Bitmap ScaleImage(Bitmap image, double scale)
    {
        int newWidth = (int)(image.Width * scale);
        int newHeight = (int)(image.Height * scale);

        Bitmap result = new Bitmap(newWidth, newHeight, PixelFormat.Format24bppRgb);
        result.SetResolution(image.HorizontalResolution, image.VerticalResolution);

        using (Graphics g = Graphics.FromImage(result))
        {
            g.InterpolationMode = InterpolationMode.HighQualityBicubic;
            g.CompositingQuality = CompositingQuality.HighQuality;
            g.SmoothingMode = SmoothingMode.HighQuality;
            g.PixelOffsetMode = PixelOffsetMode.HighQuality;
            g.DrawImage(image, 0, 0, result.Width, result.Height);
        }
        return result;
    }

    private ImageCodecInfo GetImageCodecInfo()
    {
        FileInfo fi = new FileInfo(sourcePath);

        switch (fi.Extension)
        {
            case ".bmp": return ImageCodecInfo.GetImageEncoders()[0];
            case ".jpg":
            case ".jpeg": return ImageCodecInfo.GetImageEncoders()[1];
            case ".gif": return ImageCodecInfo.GetImageEncoders()[2];
            case ".tiff": return ImageCodecInfo.GetImageEncoders()[3];
            case ".png": return ImageCodecInfo.GetImageEncoders()[4];
            default: return null;
        }
    }

    private ImageFormat GetImageFormat()
    {
        FileInfo fi = new FileInfo(sourcePath);

        switch (fi.Extension)
        {
            case ".jpg": return ImageFormat.Jpeg;
            case ".bmp": return ImageFormat.Bmp;
            case ".gif": return ImageFormat.Gif;
            case ".png": return ImageFormat.Png;
            case ".tiff": return ImageFormat.Tiff;
            default: return ImageFormat.Png;
        }
    }
}

here is the code for resize the image 这是调整图像大小的代码

  byte[] compressedBuffer = new ImageResizer().GetScaledImage(300000, FileName);

here 30000 shows the size, and the filename is the name of the file 这里30000显示大小,文件名是文件名

One of the Bitmap class constructors takes an original image and a new size as an input: Bitmap类的构造函数之一将原始图像和新大小作为输入:

Image uploadedImage = new Bitmap("Path/to/your/image.bmp");
Image resizedImage = new Bitmap(uploadedImage, new Size(100, 100));

In the first line of the sample you load the image. 在示例的第一行中,加载图像。 In the second line of the example you create a new object using the uploaded image and a new size. 在示例的第二行中,您将使用上载的图像和新的尺寸创建一个新对象。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM