将jpeg图像转换为十六进制格式

时间:2013-09-10 11:01:55

标签: c# image binary hex jpeg

我想将jpeg文件转换为十六进制格式,我找到了一些解决方案,其中最初将图像转换为字节数组,然后转换为十六进制格式。是否有任何方法可以直接将Jpeg图像转换为C#中的十六进制格式。

2 个答案:

答案 0 :(得分:6)

使用System.Runtime.Remoting.Metadata.W3cXsd2001命名空间:)

var str = new SoapHexBinary(File.ReadAllBytes(fName)).ToString();

或使用BitConverter

var str2 = BitConverter.ToString(File.ReadAllBytes(fName));

答案 1 :(得分:0)

没有这样的功能,但你可以轻松写一个:

void ConvertToHex(string inputFilePath, string outputFilePath)
{
    var bytes = File.ReadAllBytes(inputFilePath);
    var hexString = string.Join("", bytes.Select(x => x.ToString("X2")));
    File.WriteAllText(outputFilePath, hexString);
}