FileStream(来自pdf转换器的jpeg)到Byte []

时间:2011-11-17 15:34:17

标签: c# byte jpeg filestream

使用aspose,我已将pdf文档的第一页转换为jpeg(在'Documents'部分中用作缩略图到我的一个asp.net页面)。到目前为止,这是存储在FileStream中的 - 但我需要一个字节数组来分配Image控件的datavalue。任何人都可以指出我正确的方向转换这个?我好好看看,我找不到解决方案。

非常感谢。

3 个答案:

答案 0 :(得分:4)

这应该有效:

byte[] data = File.ReadAllBytes("path/to/file.jpg")

答案 1 :(得分:1)

var memStream = new MemoryStream();
yourFileStream.CopyTo(memStream);
var bytes = memStream.ToArray();

答案 2 :(得分:1)

你可以试试这个......

     /// <summary>
/// Function to get byte array from a file
/// </summary>
/// <param name="_FileName">File name to get byte array</param>
/// <returns>Byte Array</returns>
public byte[] FileToByteArray(string _FileName)
{
    byte[] _Buffer = null;

    try
    {
        // Open file for reading
        System.IO.FileStream _FileStream = new System.IO.FileStream(_FileName, System.IO.FileMode.Open, System.IO.FileAccess.Read);

        // attach filestream to binary reader
        System.IO.BinaryReader _BinaryReader = new System.IO.BinaryReader(_FileStream);

        // get total byte length of the file
        long _TotalBytes = new System.IO.FileInfo(_FileName).Length;

        // read entire file into buffer
        _Buffer = _BinaryReader.ReadBytes((Int32)_TotalBytes);

        // close file reader
        _FileStream.Close();
        _FileStream.Dispose();
        _BinaryReader.Close();
    }
    catch (Exception _Exception)
    {
        // Error
        Console.WriteLine("Exception caught in process: {0}", _Exception.ToString());
    }

    return _Buffer;
}