
c#
f-hake
这个作者很懒,什么都没留下…
展开
-
c#中将pictureBox中的图片保存到本地中
c#中将pictureBox中的图片保存到本地中this.pictureBox.Image.Save("D://你好.jpg");上面这种方式指定了路径和名称,需要将路径和名称参数化下面这种方式就更加的灵活 SaveFileDialog saveImageDialog = new SaveFileDialog(); saveImageDialog.Title = "图片保存"; saveImageDialog.Filter = @"jpeg|*.原创 2021-04-22 20:23:38 · 5460 阅读 · 0 评论 -
c#中将dicom文件格式转换成可读图片
c#中将dicom文件格式转换成可读图片不多说,直接上代码using System;using System.Collections.Generic;using System.IO;using System.Text;using System.Windows.Forms;using System.Collections;using System.Drawing;using System.Text.RegularExpressions;namespace TestForm{ c原创 2020-11-16 09:32:33 · 1876 阅读 · 2 评论