C#/。NETで2つの画像をマージする


86

簡単なアイデア:マージしたい2つの画像があります。1つは中央で透明な500x500で、もう1つは150x150です。

基本的な考え方は次のとおりです。500x500の空のキャンバスを作成し、150x150の画像を空のキャンバスの中央に配置してから、500x500の画像をコピーして、中央が透明になるように150x150が透けて見えるようにします。

Java、PHP、Pythonでそれを行う方法を知っています... C#で使用するオブジェクト/クラスがわからないので、画像を別の画像にコピーする簡単な例で十分です。


これは役に立ちますか?daniweb.com/forums/thread87993.html
Dror

回答:


99

基本的に私はこれを私たちのアプリの1つで使用しています:ビデオのフレームの上にプレイアイコンをオーバーレイしたい:

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
ありがとう!今日、私のベーコンを完全に保存しました
Jason More

@downvoterは私の答えを強化できるように、詳しく説明しますか?
Andreas Niedermair 2014年

5
@AndreasNiedermair反対票はおそらくあなたのコードをコピーして貼り付け、機能しませんでした
Jean-Paul

そのままゴールドアンサーです!
DmitryBoyko

60

これにより、画像が別の画像に追加されます。

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

グラフィックは名前空間にあります System.Drawing


33

このすべての後、私はこれを試す新しいより簡単な方法を見つけました..

複数の写真を結合できます。

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();
        }
    }
}

4
うまくいきました。g.Clear(Color.Transparent)アニメーションスプライトのPNG画像をマージする場合
syclee 2012

1
finalImage = new System.Drawing.Bitmap(width、height); 幅/高さの値が高い場合にエラーをスローします
zeetit 2013

@Anant Dabhiさて、古い質問をお返しして申し訳ありませんが、これをVB.NETに変換しました。次の画像の未使用のピクセル/空白のピクセルが透明な場合、他の写真を重ねるとオーバーレイされますか?そうでない場合、それを行う方法はありますか?
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.