C # /. NET에서 두 이미지 병합


87

간단한 아이디어 : 병합하려는 이미지가 두 개 있습니다. 하나는 중간에 투명한 500x500이고 다른 하나는 150x150입니다.

기본 아이디어는 다음과 같습니다. 500x500 크기의 빈 캔버스를 만들고 150x150 이미지를 빈 캔버스 중간에 배치 한 다음 500x500 이미지를 복사하여 투명한 중간이 150x150이 빛나도록합니다.

Java, PHP 및 Python에서 수행하는 방법을 알고 있습니다. C #에서 사용할 개체 / 클래스가 무엇인지 전혀 알지 못합니다. 이미지를 다른 이미지로 복사하는 간단한 예제로 충분합니다.


답변:


99

기본적으로 우리 앱 중 하나에서 이것을 사용합니다. 우리는 비디오 프레임 위에 플레이 아이콘을 오버레이하고 싶습니다.

Image playbutton;
try
{
    playbutton = Image.FromFile(/*somekindofpath*/);
}
catch (Exception ex)
{
    return;
}

Image frame;
try
{
    frame = Image.FromFile(/*somekindofpath*/);
}
catch (Exception ex)
{
    return;
}

using (frame)
{
    using (var bitmap = new Bitmap(width, height))
    {
        using (var canvas = Graphics.FromImage(bitmap))
        {
            canvas.InterpolationMode = InterpolationMode.HighQualityBicubic;
            canvas.DrawImage(frame,
                             new Rectangle(0,
                                           0,
                                           width,
                                           height),
                             new Rectangle(0,
                                           0,
                                           frame.Width,
                                           frame.Height),
                             GraphicsUnit.Pixel);
            canvas.DrawImage(playbutton,
                             (bitmap.Width / 2) - (playbutton.Width / 2),
                             (bitmap.Height / 2) - (playbutton.Height / 2));
            canvas.Save();
        }
        try
        {
            bitmap.Save(/*somekindofpath*/,
                        System.Drawing.Imaging.ImageFormat.Jpeg);
        }
        catch (Exception ex) { }
    }
}

10
감사! 완전 오늘 내 베이컨을 저장
제이슨 더

@downvoter가 내 대답을 향상시킬 수 있도록 정교하게 관리합니까?
Andreas Niedermair 2014

5
다운 유권자 @AndreasNiedermair 아마 코드를 붙여 복사 및 작동하지 않았다
장 폴

있는 그대로 금 답변입니다!
DmitryBoyko

60

이것은 다른 이미지를 추가합니다.

using (Graphics grfx = Graphics.FromImage(image))
{
    grfx.DrawImage(newImage, x, y)
}

그래픽은 네임 스페이스에 있습니다. System.Drawing


34

이 모든 후, 나는 이것을 시도하는 새로운 더 쉬운 방법을 발견했다 ..

여러 사진을 함께 결합 할 수 있습니다.

public static System.Drawing.Bitmap CombineBitmap(string[] files)
{
    //read all images into memory
    List<System.Drawing.Bitmap> images = new List<System.Drawing.Bitmap>();
    System.Drawing.Bitmap finalImage = null;

    try
    {
        int width = 0;
        int height = 0;

        foreach (string image in files)
        {
            //create a Bitmap from the file and add it to the list
            System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(image);

            //update the size of the final bitmap
            width += bitmap.Width;
            height = bitmap.Height > height ? bitmap.Height : height;

            images.Add(bitmap);
        }

        //create a bitmap to hold the combined image
        finalImage = new System.Drawing.Bitmap(width, height);

        //get a graphics object from the image so we can draw on it
        using (System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(finalImage))
        {
            //set background color
            g.Clear(System.Drawing.Color.Black);

            //go through each image and draw it on the final image
            int offset = 0;
            foreach (System.Drawing.Bitmap image in images)
            {
                g.DrawImage(image,
                  new System.Drawing.Rectangle(offset, 0, image.Width, image.Height));
                offset += image.Width;
            }
        }

        return finalImage;
    }
    catch (Exception ex)
    {
        if (finalImage != null)
            finalImage.Dispose();

        throw ex;
    }
    finally
    {
        //clean up memory
        foreach (System.Drawing.Bitmap image in images)
        {
            image.Dispose();
        }
    }
}

5
훌륭하게 작동했습니다. g.Clear (Color.Transparent) 애니메이션 스프라이트 용 PNG 이미지를 병합하려면
syclee

1
finalImage = new System.Drawing.Bitmap (너비, 높이); 너비 / 높이의 높은 값에 대해 오류 발생
zeetit

@Anant Dabhi 좋아요, 예전 질문을 다시 가져 와서 미안하지만 이것을 VB.NET으로 변환했습니다. 다음 이미지의 사용되지 않은 픽셀 / 빈 픽셀이 투명하면 다른 사진을 겹쳐 놓을 수 있습니까? 그렇지 않다면 할 방법이 있습니까?
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.