Mesclando duas imagens em C # /. NET


86

Ideia simples: tenho duas imagens que quero mesclar, uma é 500x500 que é transparente no meio e a outra é 150x150.

A ideia básica é esta: Crie uma tela vazia de 500x500, posicione a imagem 150x150 no meio da tela vazia e copie a imagem 500x500 para que o meio transparente dela permita que o 150x150 brilhe.

Eu sei fazer isso em Java, PHP e Python ... Só não tenho ideia de quais objetos / classes usar em C #, um exemplo rápido de cópia de uma imagem em outra seria suficiente.


Respostas:


99

Basicamente, eu uso isso em um de nossos aplicativos: queremos sobrepor um playicon sobre um quadro de um vídeo:

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
OBRIGADO! Economizei totalmente meu bacon hoje
Jason More

@downvoter se preocupa em elaborar, para que eu possa aprimorar minha resposta?
Andreas Niedermair

5
@AndreasNiedermair o votante negativo provavelmente copiou e colou seu código e não funcionou
Jean-Paul

É uma resposta de ouro do jeito que é!
Desenvolvedor

60

Isso adicionará uma imagem a outra.

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

Os gráficos estão no namespace System.Drawing


31

Depois de tudo isso, descobri um novo método mais fácil, tente este ..

Ele pode juntar várias fotos:

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
funcionou muito bem. g.Clear (Color.Transparent) se você deseja mesclar imagens PNG para sprites de animação
syclee

1
finalImage = novo System.Drawing.Bitmap (largura, altura); gera erro para valores altos de largura / altura
zeetit

@Anant Dabhi Ok, desculpe trazer de volta uma pergunta antiga, mas eu converti isso para VB.NET .. Isso irá sobrepor outras fotos se eu colocá-las umas sobre as outras se os pixels não usados ​​/ pixels em branco na próxima imagem forem transparentes? Se não, existe alguma maneira de fazer isso?
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.