REKLAM ALANI

Paneli Resim Olarak Kaydetme

avatar ^Phoenix^
քɦօɛռɨӼ ɖɨʐǟʏռ
287
#1
Yorumu Paylaş

PHP Kod:
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 **** 
btnSaveBmp_Click(object senderEventArgs e)
{
//panelin boyutlarını kullanarak bitmap sınıfından bir örnek oluşturalım

Bitmap bmp = new Bitmap(this.panel1.Widththis.panel1.Height);

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

this.panel1.DrawToBitmap(bmp, new Rectangle(00this.panel1.Widththis.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);
}
}

deneme
քɦօɛռɨӼ ɖɨʐǟʏռ

Konuda Ara

0 Yorum


Konuyu Okuyanlar: