代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
VB.Net
】
图像格式转换工具
作者:
雷霆
/ 发布于
2015/2/28
/
1528
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace 图像格式转换工具 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { this.skinEngine1.SkinFile = "MidsummerColor2.ssk"; } string url = string.Empty; private void btnOpen_Click(object sender, EventArgs e) { this.pictureBox1.Visible = true; this.openFileDialog1.ShowDialog(); url = this.openFileDialog1.FileName; if (url != "") { pictureBox1.Image = Image.FromFile(url); } } private void btnSave_Click(object sender, EventArgs e) { if (url == "") { MessageBox.Show("请选择需要转换的图片!","提示",MessageBoxButtons.OK,MessageBoxIcon.Warning); } else { this.saveFileDialog1.ShowDialog(); if (this.rbtnBMP.Checked == true) { this.pictureBox1.Image.Save(this.saveFileDialog1.FileName + ".BMP", System.Drawing.Imaging.ImageFormat.Bmp); } if (this.rbtnGIF.Checked == true) { this.pictureBox1.Image.Save(this.saveFileDialog1.FileName + ".GIF", System.Drawing.Imaging.ImageFormat.Gif); } if (this.rbtnJPG.Checked == true) { this.pictureBox1.Image.Save(this.saveFileDialog1.FileName + ".JPG", System.Drawing.Imaging.ImageFormat.Jpeg); } if (this.rbtnPNG.Checked == true) { this.pictureBox1.Image.Save(this.saveFileDialog1.FileName + ".PNG", System.Drawing.Imaging.ImageFormat.Png); } if (this.rbtnicon.Checked == true) { this.pictureBox1.Image.Save(this.saveFileDialog1.FileName + ".icon", System.Drawing.Imaging.ImageFormat.Icon); } if (this.rbtnwmf.Checked == true) { this.pictureBox1.Image.Save(this.saveFileDialog1.FileName + ".wmf", System.Drawing.Imaging.ImageFormat.Wmf); } } } private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e) { if(this.WindowState==FormWindowState.Minimized) { this.WindowState=FormWindowState.Normal; this.Activate(); } } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { Application.Exit(); } } }
试试其它关键字
图像格式转换
图像
格式转换
同语言下
.
根据User Agent来判定操作系统与浏览器类型
.
将PPT内容导出为JPG图片
.
Java屏幕截取
.
发送邮件组件
.
子窗体在父窗体指定的控件中显示
.
取文件的大小
.
从某个目录中筛选文件
.
VB脚本调用exe应用程序并传递参数
.
图像格式转换工具
.
洗牌算法
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
雷霆
贡献的其它代码
(
16
)
.
比较两个图片的相似度
.
a表记录不在b 表中的内容
.
按照某个键值对二维数组进行排序
.
使用Linq进行包含IN的子查询并按指定字段分组统计
.
jQuery实现MD5加密
.
统计字母出现的次数
.
三角形列表符号
.
转成大写金额
.
一个简单的HTTP服务器
.
检查一个元素是否在数组中
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3