gif图片转换成jpg文件格式本实例在开发中有用的可以参考,GIFChangeJPG。
private void buttonConvert_Click(object sender, EventArgs e)
{
if (comboBox.SelectedItem == null)//如果没有选择项
{
return;//退出本次操作
}
else
{
SaveFileDialog saveFileDialog = new SaveFileDialog();//实例化SaveFileDialog类
saveFileDialog.Title = "转化为:";//设置“另存为”对话框的题标
saveFileDialog.OverwritePrompt = true;//如果文件名存在则提示
saveFileDialog.CheckPathExists = true;//如果文件的路径不存在则提示
saveFileDialog.Filter = comboBox.Text "|" comboBox.Text;//设置文件类型
if (saveFileDialog.ShowDialog() == DialogResult.OK)//打开“另存为”对话框
{
string fileName = saveFileDialog.FileName;//获取另存为文件的路径及名称
if (comboBox.SelectedIndex == 0)//如果选择了第一项
bitmap.Save(fileName, ImageFormat.Gif);//调用Save方法将图片保存为gif格式
else if (comboBox.SelectedIndex == 1)//如果选择了第二项
bitmap.Save(fileName, ImageFormat.Jpeg);//调用Save方法将图片保存为jpg格式
FileInfo f = new FileInfo(fileName);//实例化FileInfo类
this.Text = "图像转换:" f.Name;//设置窗体标题栏
label1.Text = f.Name;
}
}
}
上一篇 Ico图片文件转换成bmp格式
下一篇 批量转换图片格式实例