15 Haziran 2013 Cumartesi

C Sharp Uygulamalar Paneli Resim Olarak Kaydetme



KONU : C Sharp Uygulamalar - C Sharp ( C# ) panel arka plan görüntüsünü resim olarak kaydetme.
ETİKETLER: c sharp panel kullanımı - c sharp panel - c sharp panel save as image - c sharp panel image - c sharp panel background image - panel image - c# panel image save - Saving Panel as an Image - save c sharp panel as image - c# panel background image - c# panel image background





UYGULAMAYI İNDİR




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;

namespace C_Sharp_Save_Panel_As_Image
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void btnSaveBmp_Click(object sender, EventArgs e)
        {
            //panelin boyutlarını kullanarak bitmap sınıfından bir örnek oluşturalım

            Bitmap bmp = new Bitmap(this.panel1.Width, this.panel1.Height);

            //paneli bitmap sınıfından aldığımız örneğe çizdirelim.

            this.panel1.DrawToBitmap(bmp, new Rectangle(0, 0, this.panel1.Width, this.panel1.Height));

            //bu bitmap i jpeg formatında uygulama exe sinin bulunduğu klasöre kaydedelim.

            bmp.Save("panel.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);
        }
    }
}

UYGULAMAYI İNDİR

Hiç yorum yok :

Yorum Gönder