c#

位置:IT落伍者 >> c# >> 浏览文章

C#转换图片文件格式


发布日期:2020年02月13日
 
C#转换图片文件格式

将图片转换为另一种格式的图像时需要使用ImageFormat类该类主要用来指定图像的格式代码如下

privatevoidbutton_Click(objectsenderEventArgse)

{

//转换图像文件

if(MyBitmap==null)

{

MessageBoxShow(请首先选择一幅图像!信息提示);

return;

}

SaveFileDialogsaveDlg=newSaveFileDialog();

if(saveDlgShowDialog()==DialogResultCancel)

return;

stringfileName=saveDlgFileName;

try

{

if(boBoxSelectedIndex==)

{

MyBitmapSave(fileName+bmpSystemDrawingImagingImageFormatBmp);

}

if(boBoxSelectedIndex==)

{

MyBitmapSave(fileName+jpgSystemDrawingImagingImageFormatGif);

}

if(boBoxSelectedIndex==)

{

MyBitmapSave(fileName+pngSystemDrawingImagingImageFormatJpeg);

}

if(boBoxSelectedIndex==)

{

MyBitmapSave(fileName+gifSystemDrawingImagingImageFormatPng);

}

if(boBoxSelectedIndex==)

{

MyBitmapSave(fileName+tifSystemDrawingImagingImageFormatTiff);

}

if(boBoxSelectedIndex==)

{

MyBitmapSave(fileName+wmfSystemDrawingImagingImageFormatWmf);

}

}

catch(Exceptionex)

{

MessageBoxShow(exMessage信息提示);

}

}

上一篇:c# DataGridView数据绑定编程与显示

下一篇:DTE .NET工程的自动化编译