C#转换图片文件格式
C#转换图片文件格式2009-12-29将图片转换为另一种格式的图像时,需要使用ImageFormat类,该类主要用来指定图像的格式。代码如下:private void button2_Click(object sender, EventArgs e){//转换图像文件if (MyBitmap == null){MessageBox.Show("请首先选择一幅图像!", "信息提示");return;}SaveFil...