.NET масштабирует изображение при рисовании в графику

Я хочу сделать программу, которая объединяет изображения png в один png. Все изображения имеют высоту 78 пикселей, ширину 120 пикселей, поэтому я создал растровое изображение 1200x78 (мне нужно объединить 10 изображений). Он объединяется, но каждое изображение в результате png масштабируется примерно в 2 раза. Почему?

Вот мой код:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Security;
using System.Drawing.Imaging;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        OpenFileDialog openFileDialog1;
        Bitmap bitmap;

        public Form1()
        {
            InitializeComponent();
            openFileDialog1 = new OpenFileDialog();
            openFileDialog1.Multiselect = true;
            openFileDialog1.Filter =
        "Images (*.PNG;*.JPG;*.GIF)|*.PNG;*.JPG;*.GIF|" +
        "All files (*.*)|*.*";
            openFileDialog1.Title = "Select images to merge";

            bitmap = new Bitmap(1200, 78);
        }

        private void button1_Click(object sender, EventArgs e)
        {
            DialogResult dr = this.openFileDialog1.ShowDialog();

            if (dr == System.Windows.Forms.DialogResult.OK)
            {
                // Read the files
                int shift = 0;
                foreach (String file in openFileDialog1.FileNames)
                {
                    // Create a PictureBox.
                    try
                    {
                        PictureBox pb = new PictureBox();
                        Image loadedImage = Image.FromFile(file);
                        pb.Height = loadedImage.Height;
                        pb.Width = loadedImage.Width;
                        pb.Image = loadedImage;
                        flowLayoutPanel2.Controls.Add(pb);

                        paintToBitmap(loadedImage, shift);

                        shift += loadedImage.Width;
                    }
                    catch (SecurityException ex)
                    {
                        //  The user lacks appropriate permissions to read files, discover paths, etc.
                        MessageBox.Show("Security error\n\n" +
                           "Error message: " + ex.Message + "\n\n" +
                            "Details (send to Support):\n\n" + ex.StackTrace
                        );
                    }
                    catch (Exception ex)
                    {
                        // Could not load the image - probably related to Windows file system permissions.
                        MessageBox.Show("!!!");
                    }
                }


                saveImage();
            }
        }

        private void paintToBitmap(Image image, int shift)
        {           
            Graphics graphics = Graphics.FromImage(bitmap);
            graphics.DrawImage(image, new Point(shift, 0));
        }

        private void saveImage()
        {
            bitmap.Save("d:\\result.png", System.Drawing.Imaging.ImageFormat.Png);
        }

        private void flowLayoutPanel2_Paint(object sender, PaintEventArgs e)
        {

        }
    }
}
5
задан Shpytyack Artem 18 April 2012 в 07:34
поделиться