Преобразовать изображение в двоичный файл?

У меня есть изображение (в формате.png), и я хочу, чтобы это изображение преобразовалось в двоичный файл.

Как это можно сделать с помощью C#?

8 ответов

Решение

Так как у вас есть файл, используйте:-

 Response.ContentType = "image/png";
 Response.WriteFile(physicalPathOfPngFile);
byte[] b = File.ReadAllBytes(file);   

Метод File.ReadAllBytes

Открывает двоичный файл, считывает содержимое файла в байтовый массив и затем закрывает файл.

Попробуй это:

Byte[] result 
    = (Byte[])new ImageConverter().ConvertTo(yourImage, typeof(Byte[]));

Вы могли бы сделать:

    MemoryStream stream = new MemoryStream();
    image.Save(stream, ImageFormat.Png);
    BinaryReader streamreader = new BinaryReader(stream);

    byte[] data = streamreader.ReadBytes(stream.Length);

Затем данные будут содержать содержимое изображения.

Сначала преобразуйте изображение в байтовый массив, используя класс ImageConverter. Затем укажите тип MIME вашего изображения PNG, и вуаля!

Вот пример:

TypeConverter tc = TypeDescriptor.GetConverter(typeof(Byte[]));
Response.ContentType = "image/png";
Response.BinaryWrite((Byte[])tc.ConvertTo(img,tc));
System.Drawing.Image image = System.Drawing.Image.FromFile("filename");
byte[] buffer;
MemoryStream stream = new MemoryStream();
image.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg);

buffer = stream.ToArray(); // converted to byte array
stream = new MemoryStream();
stream.Read(buffer, 0, buffer.Length);
stream.Seek(0, SeekOrigin.Begin);
System.Drawing.Image img = System.Drawing.Image.FromStream(stream);
public static byte[] ImageToBinary(string imagePath)
    {
        FileStream fS = new FileStream(imagePath, FileMode.Open, FileAccess.Read);
        byte[] b = new byte[fS.Length];
        fS.Read(b, 0, (int)fS.Length);
        fS.Close();
        return b;
    }

просто используйте приведенный выше код, я думаю, что ваша проблема будет решена

using System.IO;

FileStream fs=new FileStream(Path, FileMode.Open, FileAccess.Read); //Path is image location 
Byte[] bindata= new byte[Convert.ToInt32(fs.Length)];
fs.Read(bindata, 0, Convert.ToInt32(fs.Length));
Другие вопросы по тегам