编程问题 如何用c#实现图片格式转换成png格式

将图片转换成png格式,默认将背景修改成透明... 将图片转换成png格式,默认将背景修改成透明 展开
 我来答
匿名用户
2013-07-13
展开全部
private void button1_Click(object sender, EventArgs e)//打开一个图片
{
this.openFileDialog1.ShowDialog();
if (this.openFileDialog1.FileName == "")
{
MessageBox.Show("请选择一个文件");
return;
}

this.pictureBox1.Image = Bitmap.FromFile(this.openFileDialog1.FileName);
private void button2_Click(object sender, EventArgs e)//以另一种格式保存图片
{
this.saveFileDialog1.ShowDialog();
string name = this.saveFileDialog1.FileName;
if (this.saveFileDialog1.FileName == "")
{
MessageBox.Show("请选择一个文件");
}
MessageBox.Show(this.saveFileDialog1.FileName);
if (this.radioButton1.Checked)
{
this.pictureBox1.Image.Save(name + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
}
if (this.radioButton2.Checked)
{
this.pictureBox1.Image.Save(name + ".tif", System.Drawing.Imaging.ImageFormat.Tiff);
}
if (this.radioButton3.Checked)
{
this.pictureBox1.Image.Save(name + ".Gif", System.Drawing.Imaging.ImageFormat.Gif);
}
if (this.radioButton4.Checked)
{
this.pictureBox1.Image.Save(name + ".Jpeg", System.Drawing.Imaging.ImageFormat.Jpeg);
} if (this.radioButton5.Checked)
{
this.pictureBox1.Image.Save(name + ".Png", System.Drawing.Imaging.ImageFormat.Png);
}
if (this.radioButton6.Checked)
{
this.pictureBox1.Image.Save(name + ".Wmf", System.Drawing.Imaging.ImageFormat.Wmf);
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式