是的,C# 的 BinaryReader
类可以用于处理图像数据。你可以将图像文件(如 JPEG、PNG、BMP 等)读取为字节数组,然后使用 BinaryReader
对象来读取和处理这些字节数据。以下是一个简单的示例,展示了如何使用 BinaryReader
读取图像文件:
using System; using System.IO; class Program { static void Main() { // 替换为你的图像文件路径 string imagePath = "path/to/your/image.jpg"; // 使用 FileStream 读取图像文件为字节数组 using (FileStream fileStream = new FileStream(imagePath, FileMode.Open, FileAccess.Read)) { // 使用 BinaryReader 读取字节数组 using (BinaryReader binaryReader = new BinaryReader(fileStream)) { // 读取图像数据,例如读取整个文件 byte[] imageBytes = binaryReader.ReadBytes((int)fileStream.Length); // 在这里处理图像数据,例如保存到另一个文件、转换为 Base64 字符串等 } } } }
在这个示例中,我们首先使用 FileStream
读取图像文件为字节数组,然后使用 BinaryReader
对象来读取和处理这些字节数据。你可以根据需要对图像数据进行进一步处理,例如保存到另一个文件、转换为 Base64 字符串等。