📄 dataprocess.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.IO;
namespace BookManagementSystem
{
class DataProcess
{
public DataProcess()
{
}
public Image GetImageFromFilePath(string FilePath)
{
FileStream fs = new FileStream(FilePath, FileMode.Open, FileAccess.Read);
byte[] ib = new Byte[fs.Length];
fs.Read(ib, 0, Convert.ToInt32(fs.Length));
MemoryStream buf = new MemoryStream(ib);
return Image.FromStream(buf, true);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -