วิธีปรับขนาดรูปภาพ C #


288

ในฐานะที่เป็นSize, WidthและHeightมีGet()คุณสมบัติของSystem.Drawing.Image;
ฉันจะปรับขนาดวัตถุรูปภาพในขณะใช้งานใน C # ได้อย่างไร

ตอนนี้ฉันเพิ่งสร้างใหม่Imageโดยใช้:

// objImage is the original Image
Bitmap objBitmap = new Bitmap(objImage, new Size(227, 171));

2
ไม่ใช่วิธีที่ถูกต้อง ... ใช้การแก้ไขคุณภาพต่ำและอาจทำให้สตรีมดั้งเดิมถูกล็อคอยู่ตลอดระยะเวลาของภาพบิตแมปใหม่ ... อ่านรายการปรับขนาดข้อผิดพลาดภาพก่อนทำการปรับขนาดภาพของคุณเอง
แม่น้ำลิลิ ธ

2
กำจัดทิ้ง! ใช้ () {} ใช้งานได้!
Scott Coates

8
หากคำตอบเหล่านี้มีประโยชน์ให้ลองทำเครื่องหมายคำตอบที่ยอมรับได้
Joel

3
ไม่จำเป็นต้องใช้ไลบรารีเพิ่มเติมใด ๆ รหัสที่โพสต์ด้านล่างโดย Mark ทำงานได้อย่างสมบูรณ์
Elmue

9
มาร์คคือใคร ฉันไม่พบคำตอบของเขา แต่มี 3 ความคิดเห็นที่อ้างถึง
Sinatr

คำตอบ:


490

สิ่งนี้จะทำการปรับขนาดที่มีคุณภาพสูง:

/// <summary>
/// Resize the image to the specified width and height.
/// </summary>
/// <param name="image">The image to resize.</param>
/// <param name="width">The width to resize to.</param>
/// <param name="height">The height to resize to.</param>
/// <returns>The resized image.</returns>
public static Bitmap ResizeImage(Image image, int width, int height)
{
    var destRect = new Rectangle(0, 0, width, height);
    var destImage = new Bitmap(width, height);

    destImage.SetResolution(image.HorizontalResolution, image.VerticalResolution);

    using (var graphics = Graphics.FromImage(destImage))
    {
        graphics.CompositingMode = CompositingMode.SourceCopy;
        graphics.CompositingQuality = CompositingQuality.HighQuality;
        graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
        graphics.SmoothingMode = SmoothingMode.HighQuality;
        graphics.PixelOffsetMode = PixelOffsetMode.HighQuality;

        using (var wrapMode = new ImageAttributes())
        {
            wrapMode.SetWrapMode(WrapMode.TileFlipXY);
            graphics.DrawImage(image, destRect, 0, 0, image.Width,image.Height, GraphicsUnit.Pixel, wrapMode);
        }
    }

    return destImage;
}
  • wrapMode.SetWrapMode(WrapMode.TileFlipXY) ป้องกัน ghosting รอบเส้นขอบภาพ - ไม่ปรับขนาดจะสุ่มตัวอย่างพิกเซลโปร่งใสเกินขอบเขตภาพ แต่ด้วยการสะท้อนภาพเราจะได้ตัวอย่างที่ดีกว่า (การตั้งค่านี้ชัดเจนมาก)
  • destImage.SetResolution รักษา DPI โดยไม่คำนึงถึงขนาดทางกายภาพ - อาจเพิ่มคุณภาพเมื่อลดขนาดภาพหรือเมื่อพิมพ์
  • การผสมการควบคุมวิธีผสมพิกเซลกับพื้นหลัง - อาจไม่จำเป็นเนื่องจากเราวาดเพียงสิ่งเดียว
    • graphics.CompositingModeกำหนดว่าพิกเซลจากภาพต้นฉบับเขียนทับหรือรวมกับพิกเซลพื้นหลัง SourceCopyระบุว่าเมื่อมีการแสดงสีมันจะเขียนทับสีพื้นหลัง
    • graphics.CompositingQuality กำหนดระดับคุณภาพการเรนเดอร์ของรูปภาพที่เป็นเลเยอร์
  • graphics.InterpolationMode กำหนดว่าจะคำนวณค่ากลางระหว่างสองจุดสิ้นสุดอย่างไร
  • graphics.SmoothingMode ระบุว่าเส้นส่วนโค้งและขอบของพื้นที่ที่เติมเต็มใช้การปรับให้เรียบ (หรือที่เรียกว่าการลดรอยหยัก) - อาจใช้ได้เฉพาะกับเวกเตอร์เท่านั้น
  • graphics.PixelOffsetMode ส่งผลกระทบต่อคุณภาพการแสดงผลเมื่อวาดภาพใหม่

การคงอัตราส่วนไว้เป็นแบบฝึกหัดสำหรับผู้อ่าน (จริง ๆ แล้วฉันไม่คิดว่ามันเป็นหน้าที่ของฟังก์ชั่นนี้ที่จะทำเพื่อคุณ)

นอกจากนี้ยังเป็นบทความที่ดีที่อธิบายถึงข้อผิดพลาดบางอย่างกับการปรับขนาดภาพ ฟังก์ชั่นดังกล่าวจะครอบคลุมมากที่สุดของพวกเขา แต่คุณยังคงมีความกังวลเกี่ยวกับการประหยัด


4
โค้ดทำงานได้อย่างสมบูรณ์แบบเมื่อปรับขนาดภาพ แต่เพิ่มขนาดจาก 66KB เป็น 132 KB Hoe ฉันสามารถลดมันได้
chamara

3
@chamara นั่นอาจจะเป็นเพราะการประหยัดคุณภาพที่คุณเลือก ดูmsdn.microsoft.com/en-us/library/bb882583(v=vs.110).aspxลองใช้คุณภาพ = 90
mpen

3
@kstubs คุณแน่ใจนะ Bitmapเป็นเพียงแค่ชื่อของคลาสคุณสามารถบันทึกเป็นไฟล์ประเภทใดก็ได้ที่คุณต้องการ
mpen

5
@dotNetBlackBelt คุณอาจต้องเพิ่มการอ้างอิงSystem.Drawingและเพิ่มusing System.Drawing.Imaging;
mpen

2
สิ่งนี้จะไม่รักษาอัตราส่วนเดิมใช่ไหม
Kasper Skov

148

ไม่แน่ใจว่าสิ่งนี้เป็นเรื่องยากทำสิ่งที่คุณทำใช้ตัวสร้างบิตแมปที่โอเวอร์โหลดเพื่อสร้างภาพขนาดใหม่สิ่งเดียวที่คุณหายไปคือการส่งกลับไปยังชนิดข้อมูลรูปภาพ:

    public static Image resizeImage(Image imgToResize, Size size)
    {
       return (Image)(new Bitmap(imgToResize, size));
    }

    yourImage = resizeImage(yourImage, new Size(50,50));

2
คุณไม่ควรกำจัดyourImageก่อนที่จะกำหนดให้กับภาพใหม่?
Nick Shaw

3
คุณสามารถกำจัดมันด้วยตนเองหรือปล่อยให้ตัวเก็บขยะทำงานได้ ไม่เป็นไร
Elmue

23
รหัสนี้ไม่สามารถควบคุมคุณภาพการปรับขนาดซึ่งสำคัญมาก ลองดูคำตอบจาก Mark
Elmue

43

ในคำถามนี้คุณจะได้คำตอบรวมถึงของฉัน:

public Image resizeImage(int newWidth, int newHeight, string stPhotoPath)
 {
     Image imgPhoto = Image.FromFile(stPhotoPath); 

     int sourceWidth = imgPhoto.Width;
     int sourceHeight = imgPhoto.Height;

     //Consider vertical pics
    if (sourceWidth < sourceHeight)
    {
        int buff = newWidth;

        newWidth = newHeight;
        newHeight = buff;
    }

    int sourceX = 0, sourceY = 0, destX = 0, destY = 0;
    float nPercent = 0, nPercentW = 0, nPercentH = 0;

    nPercentW = ((float)newWidth / (float)sourceWidth);
    nPercentH = ((float)newHeight / (float)sourceHeight);
    if (nPercentH < nPercentW)
    {
        nPercent = nPercentH;
        destX = System.Convert.ToInt16((newWidth -
                  (sourceWidth * nPercent)) / 2);
    }
    else
    {
        nPercent = nPercentW;
        destY = System.Convert.ToInt16((newHeight -
                  (sourceHeight * nPercent)) / 2);
    }

    int destWidth = (int)(sourceWidth * nPercent);
    int destHeight = (int)(sourceHeight * nPercent);


    Bitmap bmPhoto = new Bitmap(newWidth, newHeight,
                  PixelFormat.Format24bppRgb);

    bmPhoto.SetResolution(imgPhoto.HorizontalResolution,
                 imgPhoto.VerticalResolution);

    Graphics grPhoto = Graphics.FromImage(bmPhoto);
    grPhoto.Clear(Color.Black);
    grPhoto.InterpolationMode =
        System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;

    grPhoto.DrawImage(imgPhoto,
        new Rectangle(destX, destY, destWidth, destHeight),
        new Rectangle(sourceX, sourceY, sourceWidth, sourceHeight),
        GraphicsUnit.Pixel);

    grPhoto.Dispose();
    imgPhoto.Dispose();
    return bmPhoto;
}

5
คุณลืม imgPhoto.Dispose (); ไฟล์ถูกเก็บไว้ในการใช้งาน
shrutyzet

1
นี่เป็นประโยชน์อย่างมากและฉันใช้สิ่งนี้ในแอพของฉัน อย่างไรก็ตามสิ่งสำคัญที่ควรทราบคืออัลกอริทึมนี้ใช้ไม่ได้กับภาพโปร่งใส .. มันเปลี่ยนพิกเซลโปร่งใสทั้งหมดเป็นสีดำ มันอาจจะง่ายต่อการแก้ไข แต่มันเป็นเพียงบันทึกสำหรับผู้ใช้ :)
meme

1
คุณไม่ควรบันทึกภาพหรือไม่ imgPhoto.Save ()?
Whiplash

@meme คุณสามารถให้ลิงค์เกี่ยวกับวิธีการแก้ไขพื้นหลังสีดำสำหรับเอกสารโปร่งใส
Syed Mohamed

25

ทำไมไม่ใช้System.Drawing.Image.GetThumbnailImageวิธีการ?

public Image GetThumbnailImage(
    int thumbWidth, 
    int thumbHeight, 
    Image.GetThumbnailImageAbort callback, 
    IntPtr callbackData)

ตัวอย่าง:

Image originalImage = System.Drawing.Image.FromStream(inputStream, true, true);
Image resizedImage = originalImage.GetThumbnailImage(newWidth, (newWidth * originalImage.Height) / originalWidth, null, IntPtr.Zero);
resizedImage.Save(imagePath, ImageFormat.Png);

ที่มา: http://msdn.microsoft.com/en-us/library/system.drawing.image.getthumbnailimage.aspx


6
นี่ไม่ใช่วิธีที่ถูกต้องในการปรับขนาดภาพ สิ่งนี้จะดึงภาพขนาดย่อจาก jpg หากมีอยู่ หากไม่มีอยู่คุณจะไม่สามารถควบคุมคุณภาพหรือภาพใหม่ได้ นอกจากนี้รหัสนี้ตามที่มีการรั่วไหลของหน่วยความจำ
Robert Smith

1
@Bobrot เหตุใดจึงทำให้หน่วยความจำรั่ว
ผู้ใช้

2
สิ่งใดในไลบรารี GDI ยังคงไม่มีการจัดการ โดยไม่ต้องใช้คำสั่งที่ใช้หรือกำจัดวัตถุหลังจากนั้นมันอาจใช้เวลานานสำหรับระบบขยะเก็บรวบรวมวัตถุเหล่านั้นและทำให้หน่วยความจำพร้อมใช้งานอีกครั้ง
Robert Smith

9
มันเป็นตามที่คุณพูดว่า: อาจใช้เวลานาน แต่นี่ไม่ใช่การรั่วไหลของหน่วยความจำ มันจะเป็นหน่วยความจำรั่วถ้าหน่วยความจำจะไม่ถูกปลดปล่อย แต่นี่เป็นลักษณะการทำงานปกติของตัวรวบรวมขยะที่เพิ่มหน่วยความจำเมื่อ CPU ไม่ได้ทำงาน คำสั่ง use () ไม่ได้ป้องกันการรั่วไหลของหน่วยความจำ มันจะเพิ่มหน่วยความจำทันทีในขณะที่ตัวเก็บรวบรวมขยะจะเพิ่มหน่วยความจำเมื่อมีเวลาทำ นั่นเป็นข้อแตกต่างในกรณีนี้เท่านั้น
Elmue

ดูข้อผิดพลาดของการปรับขนาดภาพ: nathanaeljones.com/blog/2009/20-image-resizing-pitfalls "การใช้ GetThumbnailImage () GetThumbnailImage () ดูเหมือนตัวเลือกที่ชัดเจนและบทความจำนวนมากแนะนำให้ใช้งาน รูปขนาดย่อถ้ามีรูปบางรูปมีรูปแบบบางรูปแบบบางรูปแบบก็ไม่ขึ้นอยู่กับกล้องของคุณคุณจะสงสัยว่าทำไม GetThumbnailImage ใช้งานได้ดีกับรูปภาพบางรูป แต่รูปอื่น ๆ เบลออย่างน่ากลัว มากกว่า 10px คูณ 10px ด้วยเหตุผลดังกล่าว "
Nick Painter

12

คุณอาจจะลองสุทธิวีไอพี , C # ผูกพันlibvips มันเป็นไลบรารีการประมวลผลรูปภาพที่ขี้เกียจสตรีมมิ่งและขับเคลื่อนตามความต้องการดังนั้นจึงสามารถดำเนินการเช่นนี้ได้โดยไม่จำเป็นต้องโหลดรูปภาพทั้งหมด

ตัวอย่างเช่นมันมาพร้อมกับ thumbnailer รูปภาพที่มีประโยชน์:

Image image = Image.Thumbnail("image.jpg", 300, 300);
image.WriteToFile("my-thumbnail.jpg");

นอกจากนี้ยังสนับสนุนการครอบตัดแบบอัจฉริยะวิธีการกำหนดส่วนที่สำคัญที่สุดของภาพอย่างชาญฉลาดและทำให้โฟกัสอยู่ในขณะที่ครอบตัดรูปภาพ ตัวอย่างเช่น:

Image image = Image.Thumbnail("owl.jpg", 128, crop: "attention");
image.WriteToFile("tn_owl.jpg");

owl.jpgองค์ประกอบนอกศูนย์อยู่ที่ไหน:

นกฮูก

ให้ผลลัพธ์นี้:

พืชนกฮูกฉลาด

ขั้นแรกให้ย่อขนาดรูปภาพเพื่อให้แกนแนวตั้งเป็น 128 พิกเซลจากนั้นครอบตัดลงถึง 128 พิกเซลในการใช้attentionกลยุทธ์ หนึ่งนี้ค้นหาภาพสำหรับคุณสมบัติที่อาจดึงดูดสายตามนุษย์ดูSmartcrop()รายละเอียด


ดูเหมือนว่าการผูกพัน libvips ของคุณจะยอดเยี่ยม แน่นอนฉันจะดู lib ของคุณ ขอบคุณที่ทำให้สิ่งนี้พร้อมใช้งานสำหรับนักพัฒนา C #!
FrenchTastic

นี่คือสุดยอด! ฉันไม่คิดเลยว่าห้องสมุดการประมวลผลภาพจะดูดีขนาดนี้
dalvir

ดี! ดีกว่า ImageMagick หนัก
Moshe L

10

นี่จะ -

  • ปรับขนาดความกว้างและความสูงโดยไม่จำเป็นต้องใช้ลูป
  • ไม่เกินขนาดดั้งเดิมของภาพ

//////////////

private void ResizeImage(Image img, double maxWidth, double maxHeight)
{
    double resizeWidth = img.Source.Width;
    double resizeHeight = img.Source.Height;

    double aspect = resizeWidth / resizeHeight;

    if (resizeWidth > maxWidth)
    {
        resizeWidth = maxWidth;
        resizeHeight = resizeWidth / aspect;
    }
    if (resizeHeight > maxHeight)
    {
        aspect = resizeWidth / resizeHeight;
        resizeHeight = maxHeight;
        resizeWidth = resizeHeight * aspect;
    }

    img.Width = resizeWidth;
    img.Height = resizeHeight;
}

11
OP ถูกถามเกี่ยวกับ System.Drawing.Image ซึ่งรหัสของคุณจะไม่ทำงานเนื่องจากคุณสมบัติ 'ความกว้าง' และ 'ความสูง' ไม่สามารถตั้งค่าได้ อย่างไรก็ตามจะทำงานกับ System.Windows.Controls.Image
mmmdreg

10
public static Image resizeImage(Image image, int new_height, int new_width)
{
    Bitmap new_image = new Bitmap(new_width, new_height);
    Graphics g = Graphics.FromImage((Image)new_image );
    g.InterpolationMode = InterpolationMode.High;
    g.DrawImage(image, 0, 0, new_width, new_height);
    return new_image;
}

คุณลืมทิ้งกราฟิก ดูเหมือนว่าหลักการเช่นเดียวกับบิตแมปใหม่ (ภาพความกว้างความสูง)ด้วยโหมดการแก้ไขที่ดีกว่า ฉันอยากรู้ว่าDefaultคืออะไร? มันยิ่งแย่กว่านี้อีกLowเหรอ?
Sinatr

9

รหัสนี้เหมือนกับโพสต์จากคำตอบข้อใดข้อหนึ่งข้างต้น .. แต่จะแปลงพิกเซลแบบโปร่งใสเป็นสีขาวแทนที่จะเป็นสีดำ ... ขอบคุณ :)

    public Image resizeImage(int newWidth, int newHeight, string stPhotoPath)
    {
        Image imgPhoto = Image.FromFile(stPhotoPath);

        int sourceWidth = imgPhoto.Width;
        int sourceHeight = imgPhoto.Height;

        //Consider vertical pics
        if (sourceWidth < sourceHeight)
        {
            int buff = newWidth;

            newWidth = newHeight;
            newHeight = buff;
        }

        int sourceX = 0, sourceY = 0, destX = 0, destY = 0;
        float nPercent = 0, nPercentW = 0, nPercentH = 0;

        nPercentW = ((float)newWidth / (float)sourceWidth);
        nPercentH = ((float)newHeight / (float)sourceHeight);
        if (nPercentH < nPercentW)
        {
            nPercent = nPercentH;
            destX = System.Convert.ToInt16((newWidth -
                      (sourceWidth * nPercent)) / 2);
        }
        else
        {
            nPercent = nPercentW;
            destY = System.Convert.ToInt16((newHeight -
                      (sourceHeight * nPercent)) / 2);
        }

        int destWidth = (int)(sourceWidth * nPercent);
        int destHeight = (int)(sourceHeight * nPercent);


        Bitmap bmPhoto = new Bitmap(newWidth, newHeight,
                      PixelFormat.Format24bppRgb);

        bmPhoto.SetResolution(imgPhoto.HorizontalResolution,
                     imgPhoto.VerticalResolution);

        Graphics grPhoto = Graphics.FromImage(bmPhoto);
        grPhoto.Clear(Color.White);
        grPhoto.InterpolationMode =
            System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;

        grPhoto.DrawImage(imgPhoto,
            new Rectangle(destX, destY, destWidth, destHeight),
            new Rectangle(sourceX, sourceY, sourceWidth, sourceHeight),
            GraphicsUnit.Pixel);

        grPhoto.Dispose();
        imgPhoto.Dispose();

        return bmPhoto;
    }

7

ในแอปพลิเคชันฉันทำมันจำเป็นต้องสร้างฟังก์ชั่นที่มีหลายตัวเลือก มีขนาดค่อนข้างใหญ่ แต่ปรับขนาดรูปภาพสามารถรักษาอัตราส่วนกว้างยาวและสามารถตัดขอบเพื่อส่งกลับเฉพาะกึ่งกลางของภาพ:

/// <summary>
    /// Resize image with a directory as source
    /// </summary>
    /// <param name="OriginalFileLocation">Image location</param>
    /// <param name="heigth">new height</param>
    /// <param name="width">new width</param>
    /// <param name="keepAspectRatio">keep the aspect ratio</param>
    /// <param name="getCenter">return the center bit of the image</param>
    /// <returns>image with new dimentions</returns>
    public Image resizeImageFromFile(String OriginalFileLocation, int heigth, int width, Boolean keepAspectRatio, Boolean getCenter)
    {
        int newheigth = heigth;
        System.Drawing.Image FullsizeImage = System.Drawing.Image.FromFile(OriginalFileLocation);

        // Prevent using images internal thumbnail
        FullsizeImage.RotateFlip(System.Drawing.RotateFlipType.Rotate180FlipNone);
        FullsizeImage.RotateFlip(System.Drawing.RotateFlipType.Rotate180FlipNone);

        if (keepAspectRatio || getCenter)
        {
            int bmpY = 0;
            double resize = (double)FullsizeImage.Width / (double)width;//get the resize vector
            if (getCenter)
            {
                bmpY = (int)((FullsizeImage.Height - (heigth * resize)) / 2);// gives the Y value of the part that will be cut off, to show only the part in the center
                Rectangle section = new Rectangle(new Point(0, bmpY), new Size(FullsizeImage.Width, (int)(heigth * resize)));// create the section to cut of the original image
                //System.Console.WriteLine("the section that will be cut off: " + section.Size.ToString() + " the Y value is minimized by: " + bmpY);
                Bitmap orImg = new Bitmap((Bitmap)FullsizeImage);//for the correct effect convert image to bitmap.
                FullsizeImage.Dispose();//clear the original image
                using (Bitmap tempImg = new Bitmap(section.Width, section.Height))
                {
                    Graphics cutImg = Graphics.FromImage(tempImg);//              set the file to save the new image to.
                    cutImg.DrawImage(orImg, 0, 0, section, GraphicsUnit.Pixel);// cut the image and save it to tempImg
                    FullsizeImage = tempImg;//save the tempImg as FullsizeImage for resizing later
                    orImg.Dispose();
                    cutImg.Dispose();
                    return FullsizeImage.GetThumbnailImage(width, heigth, null, IntPtr.Zero);
                }
            }
            else newheigth = (int)(FullsizeImage.Height / resize);//  set the new heigth of the current image
        }//return the image resized to the given heigth and width
        return FullsizeImage.GetThumbnailImage(width, newheigth, null, IntPtr.Zero);
    }

เพื่อให้ง่ายต่อการเข้าถึงฟังก์ชั่นเป็นไปได้ที่จะเพิ่มฟังก์ชั่นที่โอเวอร์โหลดบางส่วน:

/// <summary>
    /// Resize image with a directory as source
    /// </summary>
    /// <param name="OriginalFileLocation">Image location</param>
    /// <param name="heigth">new height</param>
    /// <param name="width">new width</param>
    /// <returns>image with new dimentions</returns>
    public Image resizeImageFromFile(String OriginalFileLocation, int heigth, int width)
    {
        return resizeImageFromFile(OriginalFileLocation, heigth, width, false, false);
    }

    /// <summary>
    /// Resize image with a directory as source
    /// </summary>
    /// <param name="OriginalFileLocation">Image location</param>
    /// <param name="heigth">new height</param>
    /// <param name="width">new width</param>
    /// <param name="keepAspectRatio">keep the aspect ratio</param>
    /// <returns>image with new dimentions</returns>
    public Image resizeImageFromFile(String OriginalFileLocation, int heigth, int width, Boolean keepAspectRatio)
    {
        return resizeImageFromFile(OriginalFileLocation, heigth, width, keepAspectRatio, false);
    }

ตอนนี้เป็นสองตัวเลือกสุดท้ายที่จะตั้งค่า เรียกใช้ฟังก์ชันเช่นนี้:

System.Drawing.Image ResizedImage = resizeImageFromFile(imageLocation, 800, 400, true, true);

6
public string CreateThumbnail(int maxWidth, int maxHeight, string path)
{

    var image = System.Drawing.Image.FromFile(path);
    var ratioX = (double)maxWidth / image.Width;
    var ratioY = (double)maxHeight / image.Height;
    var ratio = Math.Min(ratioX, ratioY);
    var newWidth = (int)(image.Width * ratio);
    var newHeight = (int)(image.Height * ratio);
    var newImage = new Bitmap(newWidth, newHeight);
    Graphics thumbGraph = Graphics.FromImage(newImage);

    thumbGraph.CompositingQuality = CompositingQuality.HighQuality;
    thumbGraph.SmoothingMode = SmoothingMode.HighQuality;
    //thumbGraph.InterpolationMode = InterpolationMode.HighQualityBicubic;

    thumbGraph.DrawImage(image, 0, 0, newWidth, newHeight);
    image.Dispose();

    string fileRelativePath = "newsizeimages/" + maxWidth + Path.GetFileName(path);
    newImage.Save(Server.MapPath(fileRelativePath), newImage.RawFormat);
    return fileRelativePath;
}

คลิกที่นี่http://bhupendrasinghsaini.blogspot.in/2014/07/resize-image-in-c.html


6

นี่คือรหัสที่ฉันทำงานตามข้อกำหนดเฉพาะเช่น: ปลายทางนั้นอยู่ในอัตราส่วนแนวนอนเสมอ มันควรจะเป็นการเริ่มต้นที่ดี

public Image ResizeImage(Image source, RectangleF destinationBounds)
{
    RectangleF sourceBounds = new RectangleF(0.0f,0.0f,(float)source.Width, (float)source.Height);
    RectangleF scaleBounds = new RectangleF();

    Image destinationImage = new Bitmap((int)destinationBounds.Width, (int)destinationBounds.Height);
    Graphics graph = Graphics.FromImage(destinationImage);
    graph.InterpolationMode =
        System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;

    // Fill with background color
    graph.FillRectangle(new SolidBrush(System.Drawing.Color.White), destinationBounds);

    float resizeRatio, sourceRatio;
    float scaleWidth, scaleHeight;

    sourceRatio = (float)source.Width / (float)source.Height;

    if (sourceRatio >= 1.0f)
    {
        //landscape
        resizeRatio = destinationBounds.Width / sourceBounds.Width;
        scaleWidth = destinationBounds.Width;
        scaleHeight = sourceBounds.Height * resizeRatio;
        float trimValue = destinationBounds.Height - scaleHeight;
        graph.DrawImage(source, 0, (trimValue / 2), destinationBounds.Width, scaleHeight);
    }
    else
    {
        //portrait
        resizeRatio = destinationBounds.Height/sourceBounds.Height;
        scaleWidth = sourceBounds.Width * resizeRatio;
        scaleHeight = destinationBounds.Height;
        float trimValue = destinationBounds.Width - scaleWidth;
        graph.DrawImage(source, (trimValue / 2), 0, scaleWidth, destinationBounds.Height);
    }

    return destinationImage;

}

ที่น่ากลัว !!! ฉันมีปัญหาในภาพบุคคลและหลังจากพยายามหาวิธีแก้ปัญหามากมายบนเว็บนี่เป็นเพียงสิ่งเดียวที่สมบูรณ์แบบ! ขอบคุณมาก!
Fábio

3

หากคุณกำลังทำงานกับBitmapSource:

var resizedBitmap = new TransformedBitmap(
    bitmapSource,
    new ScaleTransform(scaleX, scaleY));

หากคุณต้องการควบคุมคุณภาพอย่างละเอียดให้เรียกใช้สิ่งนี้ก่อน:

RenderOptions.SetBitmapScalingMode(
    bitmapSource,
    BitmapScalingMode.HighQuality);

(ค่าเริ่มต้นBitmapScalingMode.Linearซึ่งเทียบเท่ากับBitmapScalingMode.LowQuality)


3

ฉันใช้ ImageProcessorCore ส่วนใหญ่เป็นเพราะมันใช้งานได้. Net Core

และมีตัวเลือกเพิ่มเติมเช่นการแปลงประเภทการครอบตัดรูปภาพและอื่น ๆ

http://imageprocessor.org/imageprocessor/


1
ฉันดูแล้วและนี่ไม่รองรับ. NET Core มันสร้างขึ้นจากกรอบเต็ม
chrisdrobison

1

ปรับขนาดและบันทึกภาพให้พอดีกับความกว้างและความสูงเช่นผ้าใบทำให้สัดส่วนภาพเป็นสัดส่วน

using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
using System.IO;

namespace Infra.Files
{
    public static class GenerateThumb
    {
        /// <summary>
        /// Resize and save an image to fit under width and height like a canvas keeping things proportional
        /// </summary>
        /// <param name="originalImagePath"></param>
        /// <param name="thumbImagePath"></param>
        /// <param name="newWidth"></param>
        /// <param name="newHeight"></param>
        public static void GenerateThumbImage(string originalImagePath, string thumbImagePath, int newWidth, int newHeight)
        {
            Bitmap srcBmp = new Bitmap(originalImagePath);
            float ratio = 1;
            float minSize = Math.Min(newHeight, newHeight);

            if (srcBmp.Width > srcBmp.Height)
            {
                ratio = minSize / (float)srcBmp.Width;
            }
            else
            {
                ratio = minSize / (float)srcBmp.Height;
            }

            SizeF newSize = new SizeF(srcBmp.Width * ratio, srcBmp.Height * ratio);
            Bitmap target = new Bitmap((int)newSize.Width, (int)newSize.Height);

            using (Graphics graphics = Graphics.FromImage(target))
            {
                graphics.CompositingQuality = CompositingQuality.HighSpeed;
                graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
                graphics.CompositingMode = CompositingMode.SourceCopy;
                graphics.DrawImage(srcBmp, 0, 0, newSize.Width, newSize.Height);

                using (MemoryStream memoryStream = new MemoryStream())
                {
                    target.Save(thumbImagePath);
                }
            }
        }
    }
}

1

ใช้ฟังก์ชั่นด้านล่างพร้อมตัวอย่างด้านล่างสำหรับเปลี่ยนขนาดภาพ:

//Example : 
System.Net.Mime.MediaTypeNames.Image newImage = System.Net.Mime.MediaTypeNames.Image.FromFile("SampImag.jpg");
System.Net.Mime.MediaTypeNames.Image temImag = FormatImage(newImage, 100, 100);

//image size modification unction   
public static System.Net.Mime.MediaTypeNames.Image FormatImage(System.Net.Mime.MediaTypeNames.Image img, int outputWidth, int outputHeight)
{

    Bitmap outputImage = null;
    Graphics graphics = null;
    try
    {
         outputImage = new Bitmap(outputWidth, outputHeight, System.Drawing.Imaging.PixelFormat.Format16bppRgb555);
         graphics = Graphics.FromImage(outputImage);
         graphics.DrawImage(img, new Rectangle(0, 0, outputWidth, outputHeight),
         new Rectangle(0, 0, img.Width, img.Height), GraphicsUnit.Pixel);

         return outputImage;
     }
     catch (Exception ex)
     {
           return img;
     }
}

2
โปรดพิจารณาอธิบายในคำตอบของคุณด้านบนวิธีการใช้รหัสนี้สิ่งที่รหัสทำและวิธีแก้ปัญหาในคำถามเดิม
ทิมVisée

ฉันได้เพิ่มกรณีการใช้งานด้วย ใช้ฟังก์ชั่นด้านบนด้วยตัวอย่างร้อง รูปภาพ newImage = Image.FromFile ("SampImag.jpg"); รูป temImag = FormatImage (newImage, 100, 100);
Prasad KM


0

หมายเหตุ: สิ่งนี้จะไม่ทำงานกับ ASP.Net Core เพราะ WebImage ขึ้นอยู่กับ System.Web แต่บน ASP.Net เวอร์ชันก่อนหน้าฉันใช้ตัวอย่างนี้หลายครั้งและมีประโยชน์

String ThumbfullPath = Path.GetFileNameWithoutExtension(file.FileName) + "80x80.jpg";
var ThumbfullPath2 = Path.Combine(ThumbfullPath, fileThumb);
using (MemoryStream stream = new MemoryStream(System.IO.File.ReadAllBytes(fullPath)))
{
      var thumbnail = new WebImage(stream).Resize(80, 80);
      thumbnail.Save(ThumbfullPath2, "jpg");
}
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.