C #을 사용하여 이미지를 자르는 방법?


답변:


228

Graphics.DrawImage비트 맵에서 그래픽 객체에 자른 이미지를 그리는 데 사용할 수 있습니다 .

Rectangle cropRect = new Rectangle(...);
Bitmap src = Image.FromFile(fileName) as Bitmap;
Bitmap target = new Bitmap(cropRect.Width, cropRect.Height);

using(Graphics g = Graphics.FromImage(target))
{
   g.DrawImage(src, new Rectangle(0, 0, target.Width, target.Height), 
                    cropRect,                        
                    GraphicsUnit.Pixel);
}

3
참고로 DrawImage ()의 서명이 유효하지 않습니다. GraphicsUnit 매개 변수가 없습니다 .
Nathan Taylor

2
또한 두 번째 주장은 자르기 rect가 아닌 목표 rect입니다.
axk

8
자르기 목적 DrawImageUnscaledAndClipped보다 방법이 더 효율적 DrawImage입니까?
Ivan Kochurkin

270

이 링크를 확인하십시오 : http://www.switchonthecode.com/tutorials/csharp-tutorial-image-editing-saving-cropping-and-izing

private static Image cropImage(Image img, Rectangle cropArea)
{
   Bitmap bmpImage = new Bitmap(img);
   return bmpImage.Clone(cropArea, bmpImage.PixelFormat);
}

56
동의하지만 cropArea가 img 경계를 넘으면 "메모리 부족"예외가 발생합니다.
ChrisJJ

1
@KvanTTT, 큰 이미지를 작은 이미지로 자르려면 둘 다 매우 느립니다.
JBeurer 's

1
@ChrisJJ 더 설명해 주시겠습니까? 또는 해당 문제에 대한 해결 방법을 제공 하시겠습니까?
raym0nd

1
@ raym0nd 해결 방법은 사각형의 크기가 이미지의 크기보다 크지 않도록하는 것입니다.
stuartdotnet

4
그들의 사이트가 다운되었습니다. 사이트에서 코드를 얻은 사람이 있습니까?
sangam

55

허용 된 답변보다 간단합니다.

public static Bitmap cropAtRect(this Bitmap b, Rectangle r)
{
    using (Bitmap nb = new Bitmap(r.Width, r.Height))
    using (Graphics g = Graphics.FromImage(nb))
    {
        g.DrawImage(b, -r.X, -r.Y);
        return nb;
    }
}

그리고 그것은 "피할 아웃 메모리의 가장 간단한 대답은"예외 위험을.

그 참고 Bitmap하고 Graphics있습니다 IDisposable따라서 using조항.

편집 : 이것은 Bitmap.SavePaint.exe로 저장 한 PNG 또는 괜찮습니다. 그러나 Paint Shop Pro 6으로 저장 한 PNG에서는 실패 합니다 . 내용이 바뀌 었습니다 . 를 추가 GraphicsUnit.Pixel하면 다른 잘못된 결과가 나타납니다. 아마도 이러한 실패한 PNG에 결함이있을 수 있습니다.


5
여기에 최선의 답변을 보내주십시오. 다른 솔루션에서도 '메모리 부족'이 발생했습니다. 이것은 처음으로 작동했습니다.
c0d3p03t 2016 년

GraphicsUnit.Pixel을 추가하면 왜 잘못된 결과가 나오는지 이해하지 못하지만 분명히 그렇게합니다.
도카

@IntellyDev의 답변에서 제안 된대로 대상 이미지에서 SetResolution을 호출 할 때까지 내 이미지가 올바른 크기로 자르지 만 잘못된 X / Y로 자릅니다.
브렌트 켈러

7
이 답변은 Grphics 객체를 누출시킵니다.
TaW

2
Bitmap그리고 Graphics있습니다 IDisposable- 추가 using절을
데이브 thieben

7

사용하다 bmp.SetResolution(image.HorizontalResolution, image .VerticalResolution);

특히 이미지가 실제로 훌륭하고 해상도가 정확히 96.0이 아닌 경우 여기에 최고의 답변을 구현 하더라도이 작업이 필요할 수 있습니다.

내 테스트 예 :

    static Bitmap LoadImage()
    {
        return (Bitmap)Bitmap.FromFile( @"e:\Tests\d_bigImage.bmp" ); // here is large image 9222x9222 pixels and 95.96 dpi resolutions
    }

    static void TestBigImagePartDrawing()
    {
        using( var absentRectangleImage = LoadImage() )
        {
            using( var currentTile = new Bitmap( 256, 256 ) )
            {
                currentTile.SetResolution(absentRectangleImage.HorizontalResolution, absentRectangleImage.VerticalResolution);

                using( var currentTileGraphics = Graphics.FromImage( currentTile ) )
                {
                    currentTileGraphics.Clear( Color.Black );
                    var absentRectangleArea = new Rectangle( 3, 8963, 256, 256 );
                    currentTileGraphics.DrawImage( absentRectangleImage, 0, 0, absentRectangleArea, GraphicsUnit.Pixel );
                }

                currentTile.Save(@"e:\Tests\Tile.bmp");
            }
        }
    }

5

아주 쉽습니다 :

  • Bitmap자른 크기 로 새 객체를 만듭니다 .
  • 새 비트 맵에 대한 객체 Graphics.FromImage를 만드는 데 사용 합니다 Graphics.
  • DrawImage방법을 사용하면 음의 X 및 Y 좌표로 비트 맵에 이미지를 그릴 수 있습니다.

5

다음은 이미지 자르기에 대한 간단한 예입니다.

public Image Crop(string img, int width, int height, int x, int y)
{
    try
    {
        Image image = Image.FromFile(img);
        Bitmap bmp = new Bitmap(width, height, PixelFormat.Format24bppRgb);
        bmp.SetResolution(80, 60);

        Graphics gfx = Graphics.FromImage(bmp);
        gfx.SmoothingMode = SmoothingMode.AntiAlias;
        gfx.InterpolationMode = InterpolationMode.HighQualityBicubic;
        gfx.PixelOffsetMode = PixelOffsetMode.HighQuality;
        gfx.DrawImage(image, new Rectangle(0, 0, width, height), x, y, width, height, GraphicsUnit.Pixel);
        // Dispose to free up resources
        image.Dispose();
        bmp.Dispose();
        gfx.Dispose();

        return bmp;
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
        return null;
    }            
}

5
그는 해상도를 언급 한 유일한 사람이며, 소스 이미지에 비표준 해상도가있는 경우 위의 모든 방법이 실패합니다.
net_prog

1
bmp.SetResolution (image .HorizontalResolution, image .VerticalResolution)을 사용하십시오. 해결 문제를 해결하기 위해.
Morbia

2
예외적으로 이미지, bmp 및 gfx 객체가 누출됩니다. 문장을 사용하여 그것들을 포장하지 않는 이유는 무엇입니까?
다리우스 쿠 친스 카스


2

작업을 수행 할 추가 라이브러리가없는 쉽고 빠른 기능을 찾고있었습니다. Nicks 솔루션을 시도했지만 아틀라스 파일의 1195 이미지를 "추출"하려면 29,4 초가 필요했습니다. 그래서 나중에이 방법을 관리하고 동일한 작업을 수행하는 데 2,43 초가 필요했습니다. 아마도 이것이 도움이 될 것입니다.

// content of the Texture class
public class Texture
{
    //name of the texture
    public string name { get; set; }
    //x position of the texture in the atlas image
    public int x { get; set; }
    //y position of the texture in the atlas image
    public int y { get; set; }
    //width of the texture in the atlas image
    public int width { get; set; }
    //height of the texture in the atlas image
    public int height { get; set; }
}

Bitmap atlasImage = new Bitmap(@"C:\somepicture.png");
PixelFormat pixelFormat = atlasImage.PixelFormat;

foreach (Texture t in textureList)
{
     try
     {
           CroppedImage = new Bitmap(t.width, t.height, pixelFormat);
           // copy pixels over to avoid antialiasing or any other side effects of drawing
           // the subimages to the output image using Graphics
           for (int x = 0; x < t.width; x++)
               for (int y = 0; y < t.height; y++)
                   CroppedImage.SetPixel(x, y, atlasImage.GetPixel(t.x + x, t.y + y));
           CroppedImage.Save(Path.Combine(workingFolder, t.name + ".png"), ImageFormat.Png);
     }
     catch (Exception ex)
     {
          // handle the exception
     }
}

1

C #에서는 이미지 자르기가 매우 쉽습니다. 그러나 이미지 자르기를 관리하는 방법을 수행하는 것이 조금 더 어려울 것입니다.

아래 샘플은 C #에서 이미지를 자르는 방법입니다.

var filename = @"c:\personal\images\horizon.png";
var img = Image.FromFile(filename);
var rect = new Rectangle(new Point(0, 0), img.Size);
var cloned = new Bitmap(img).Clone(rect, img.PixelFormat);
var bitmap = new Bitmap(cloned, new Size(50, 50));
cloned.Dispose();

1

Web Image Cropping 이라는 Codeplex에서 호스팅되는 오픈 소스 인 C # 래퍼가 있습니다.

컨트롤 등록

<%@ Register Assembly="CS.Web.UI.CropImage" Namespace="CS.Web.UI" TagPrefix="cs" %>

크기 조정

<asp:Image ID="Image1" runat="server" ImageUrl="images/328.jpg" />
<cs:CropImage ID="wci1" runat="server" Image="Image1" 
     X="10" Y="10" X2="50" Y2="50" />

코드 뒤에서 자르기-예를 들어 버튼을 클릭하면 자르기 메소드를 호출합니다.

wci1.Crop(Server.MapPath("images/sample1.jpg"));



0

이 샘플 만 문제없이 작동합니다.

var crop = new Rectangle(0, y, bitmap.Width, h);
var bmp = new Bitmap(bitmap.Width, h);
var tempfile = Application.StartupPath+"\\"+"TEMP"+"\\"+Path.GetRandomFileName();


using (var gr = Graphics.FromImage(bmp))
{
    try
    {
        var dest = new Rectangle(0, 0, bitmap.Width, h);
        gr.DrawImage(image,dest , crop, GraphicsUnit.Point);
        bmp.Save(tempfile,ImageFormat.Jpeg);
        bmp.Dispose();
    }
    catch (Exception)
    {


    }

}

0

이것은 다른 방법입니다. 내 경우에는 다음이 있습니다.

  • 숫자 업다운 컨트롤 2 개 (LeftMargin 및 TopMargin이라고 함)
  • 1 그림 상자 (pictureBox1)
  • 내가 호출 한 1 버튼
  • C : \ imagenes \ myImage.gif의 이미지 1 개

버튼 안에이 코드가 있습니다 :

Image myImage = Image.FromFile(@"C:\imagenes\myImage.gif");
Bitmap croppedBitmap = new Bitmap(myImage);
croppedBitmap = croppedBitmap.Clone(
            new Rectangle(
                (int)LeftMargin.Value, (int)TopMargin.Value,
                myImage.Width - (int)LeftMargin.Value,
                myImage.Height - (int)TopMargin.Value),
            System.Drawing.Imaging.PixelFormat.DontCare);
pictureBox1.Image = croppedBitmap;

C #을 사용하여 Visual Studio 2012에서 시도했습니다. 이 페이지 에서이 솔루션을 찾았습니다


0

여기 github에서 데모를 진행 중입니다.

https://github.com/SystematixIndore/Crop-SaveImageInCSharp

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
  <title></title>
 <link href="css/jquery.Jcrop.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.Jcrop.js"></script>
</head>
<body>
  <form id="form2" runat="server">
  <div>
    <asp:Panel ID="pnlUpload" runat="server">
      <asp:FileUpload ID="Upload" runat="server" />
      <br />
      <asp:Button ID="btnUpload" runat="server" OnClick="btnUpload_Click" Text="Upload" />
      <asp:Label ID="lblError" runat="server" Visible="false" />
    </asp:Panel>
    <asp:Panel ID="pnlCrop" runat="server" Visible="false">
      <asp:Image ID="imgCrop" runat="server" />
      <br />
      <asp:HiddenField ID="X" runat="server" />
      <asp:HiddenField ID="Y" runat="server" />
      <asp:HiddenField ID="W" runat="server" />
      <asp:HiddenField ID="H" runat="server" />
      <asp:Button ID="btnCrop" runat="server" Text="Crop" OnClick="btnCrop_Click" />
    </asp:Panel>
    <asp:Panel ID="pnlCropped" runat="server" Visible="false">
      <asp:Image ID="imgCropped" runat="server" />
    </asp:Panel>
  </div>
  </form>
    <script type="text/javascript">
  jQuery(document).ready(function() {
    jQuery('#imgCrop').Jcrop({
      onSelect: storeCoords
    });
  });

  function storeCoords(c) {
    jQuery('#X').val(c.x);
    jQuery('#Y').val(c.y);
    jQuery('#W').val(c.w);
    jQuery('#H').val(c.h);
  };

</script>
</body>
</html>

업로드 및 자르기를위한 C # 코드 논리.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;
using SD = System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;

namespace WebApplication1
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        String path = HttpContext.Current.Request.PhysicalApplicationPath + "images\\";
        protected void Page_Load(object sender, EventArgs e)
        {

        }
        protected void btnUpload_Click(object sender, EventArgs e)
        {
            Boolean FileOK = false;
            Boolean FileSaved = false;

            if (Upload.HasFile)
            {
                Session["WorkingImage"] = Upload.FileName;
                String FileExtension = Path.GetExtension(Session["WorkingImage"].ToString()).ToLower();
                String[] allowedExtensions = { ".png", ".jpeg", ".jpg", ".gif" };
                for (int i = 0; i < allowedExtensions.Length; i++)
                {
                    if (FileExtension == allowedExtensions[i])
                    {
                        FileOK = true;
                    }
                }
            }

            if (FileOK)
            {
                try
                {
                    Upload.PostedFile.SaveAs(path + Session["WorkingImage"]);
                    FileSaved = true;
                }
                catch (Exception ex)
                {
                    lblError.Text = "File could not be uploaded." + ex.Message.ToString();
                    lblError.Visible = true;
                    FileSaved = false;
                }
            }
            else
            {
                lblError.Text = "Cannot accept files of this type.";
                lblError.Visible = true;
            }

            if (FileSaved)
            {
                pnlUpload.Visible = false;
                pnlCrop.Visible = true;
                imgCrop.ImageUrl = "images/" + Session["WorkingImage"].ToString();
            }
        }

        protected void btnCrop_Click(object sender, EventArgs e)
        {
            string ImageName = Session["WorkingImage"].ToString();
            int w = Convert.ToInt32(W.Value);
            int h = Convert.ToInt32(H.Value);
            int x = Convert.ToInt32(X.Value);
            int y = Convert.ToInt32(Y.Value);

            byte[] CropImage = Crop(path + ImageName, w, h, x, y);
            using (MemoryStream ms = new MemoryStream(CropImage, 0, CropImage.Length))
            {
                ms.Write(CropImage, 0, CropImage.Length);
                using (SD.Image CroppedImage = SD.Image.FromStream(ms, true))
                {
                    string SaveTo = path + "crop" + ImageName;
                    CroppedImage.Save(SaveTo, CroppedImage.RawFormat);
                    pnlCrop.Visible = false;
                    pnlCropped.Visible = true;
                    imgCropped.ImageUrl = "images/crop" + ImageName;
                }
            }
        }

        static byte[] Crop(string Img, int Width, int Height, int X, int Y)
        {
            try
            {
                using (SD.Image OriginalImage = SD.Image.FromFile(Img))
                {
                    using (SD.Bitmap bmp = new SD.Bitmap(Width, Height))
                    {
                        bmp.SetResolution(OriginalImage.HorizontalResolution, OriginalImage.VerticalResolution);
                        using (SD.Graphics Graphic = SD.Graphics.FromImage(bmp))
                        {
                            Graphic.SmoothingMode = SmoothingMode.AntiAlias;
                            Graphic.InterpolationMode = InterpolationMode.HighQualityBicubic;
                            Graphic.PixelOffsetMode = PixelOffsetMode.HighQuality;
                            Graphic.DrawImage(OriginalImage, new SD.Rectangle(0, 0, Width, Height), X, Y, Width, Height, SD.GraphicsUnit.Pixel);
                            MemoryStream ms = new MemoryStream();
                            bmp.Save(ms, OriginalImage.RawFormat);
                            return ms.GetBuffer();
                        }
                    }
                }
            }
            catch (Exception Ex)
            {
                throw (Ex);
            }
        }
    }
}
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.