回答:
画像をバイト配列に変更するサンプルコード
public byte[] ImageToByteArray(System.Drawing.Image imageIn)
{
using (var ms = new MemoryStream())
{
imageIn.Save(ms,imageIn.RawFormat);
return ms.ToArray();
}
}
ImageConverter
解決策は、これらのエラーを回避するようです。
(new Bitmap(imageIn)).Save(ms, imageIn.RawFormat);
ます。
Imageオブジェクトを変換するにbyte[]
は、次のようにします。
public static byte[] converterDemo(Image x)
{
ImageConverter _imageConverter = new ImageConverter();
byte[] xByte = (byte[])_imageConverter.ConvertTo(x, typeof(byte[]));
return xByte;
}
.ConvertTo(new Bitmap(x), typeof(byte[]));
ます。
画像パスからバイト配列を取得する別の方法は、
byte[] imgdata = System.IO.File.ReadAllBytes(HttpContext.Current.Server.MapPath(path));
これが私が現在使用しているものです。ピクセルのビット深度を変更したり(24ビット対32ビット)、画像の解像度(dpi)を無視したりして、私が試した他のテクニックの一部は最適ではありませんでした。
// ImageConverter object used to convert byte arrays containing JPEG or PNG file images into
// Bitmap objects. This is static and only gets instantiated once.
private static readonly ImageConverter _imageConverter = new ImageConverter();
画像をバイト配列に:
/// <summary>
/// Method to "convert" an Image object into a byte array, formatted in PNG file format, which
/// provides lossless compression. This can be used together with the GetImageFromByteArray()
/// method to provide a kind of serialization / deserialization.
/// </summary>
/// <param name="theImage">Image object, must be convertable to PNG format</param>
/// <returns>byte array image of a PNG file containing the image</returns>
public static byte[] CopyImageToByteArray(Image theImage)
{
using (MemoryStream memoryStream = new MemoryStream())
{
theImage.Save(memoryStream, ImageFormat.Png);
return memoryStream.ToArray();
}
}
画像へのバイト配列:
/// <summary>
/// Method that uses the ImageConverter object in .Net Framework to convert a byte array,
/// presumably containing a JPEG or PNG file image, into a Bitmap object, which can also be
/// used as an Image object.
/// </summary>
/// <param name="byteArray">byte array containing JPEG or PNG file image or similar</param>
/// <returns>Bitmap object if it works, else exception is thrown</returns>
public static Bitmap GetImageFromByteArray(byte[] byteArray)
{
Bitmap bm = (Bitmap)_imageConverter.ConvertFrom(byteArray);
if (bm != null && (bm.HorizontalResolution != (int)bm.HorizontalResolution ||
bm.VerticalResolution != (int)bm.VerticalResolution))
{
// Correct a strange glitch that has been observed in the test program when converting
// from a PNG file image created by CopyImageToByteArray() - the dpi value "drifts"
// slightly away from the nominal integer value
bm.SetResolution((int)(bm.HorizontalResolution + 0.5f),
(int)(bm.VerticalResolution + 0.5f));
}
return bm;
}
編集:jpgまたはpngファイルから画像を取得するには、File.ReadAllBytes()を使用してファイルをバイト配列に読み込む必要があります。
Bitmap newBitmap = GetImageFromByteArray(File.ReadAllBytes(fileName));
これにより、ソースストリームを開いたままにしておくことを望むビットマップに関連する問題と、ソースファイルがロックされたままになるその問題に対するいくつかの回避策が回避されます。
ImageConverter _imageConverter = new ImageConverter(); lock(SourceImage) { return (byte[])_imageConverter.ConvertTo(SourceImage, typeof(byte[])); }
ます。これは通常、約100回の反復後に発生しますが、使用new Bitmap(SourceFileName);
してビットマップを取得し、そのコードを実行すると、正常に機能します。
これを試して:
public byte[] imageToByteArray(System.Drawing.Image imageIn)
{
MemoryStream ms = new MemoryStream();
imageIn.Save(ms,System.Drawing.Imaging.ImageFormat.Gif);
return ms.ToArray();
}
public Image byteArrayToImage(byte[] byteArrayIn)
{
MemoryStream ms = new MemoryStream(byteArrayIn);
Image returnImage = Image.FromStream(ms);
return returnImage;
}
MemoryStream
も、少なくとも現在の実装では、より高速に使用されているメモリはクリーンアップされません。実際、それを閉じると、Image
後で使用できなくなり、GDIエラーが発生します。
File.ReadAllBytes()
メソッドを使用して、任意のファイルをバイト配列に読み込むことができます。バイト配列をファイルに書き込むには、File.WriteAllBytes()
メソッドを使用します。
お役に立てれば。
詳細とサンプルコードはこちらからご覧いただけます。
ピクセルまたはイメージ全体(ヘッダーを含む)のみをバイト配列として必要ですか?
ピクセルの場合:CopyPixels
ビットマップのメソッドを使用します。何かのようなもの:
var bitmap = new BitmapImage(uri);
//Pixel array
byte[] pixels = new byte[width * height * 4]; //account for stride if necessary and whether the image is 32 bit, 16 bit etc.
bitmap.CopyPixels(..size, pixels, fullStride, 0);
コード:
using System.IO;
byte[] img = File.ReadAllBytes(openFileDialog1.FileName);
ストリームのバイトを運ぶためにimageBytesを参照しない場合、メソッドは何も返しません。imageBytes = m.ToArray();を参照してください。
public static byte[] SerializeImage() {
MemoryStream m;
string PicPath = pathToImage";
byte[] imageBytes;
using (Image image = Image.FromFile(PicPath)) {
using ( m = new MemoryStream()) {
image.Save(m, image.RawFormat);
imageBytes = new byte[m.Length];
//Very Important
imageBytes = m.ToArray();
}//end using
}//end using
return imageBytes;
}//SerializeImage
[NB]それでもブラウザに画像が表示されない場合は、詳細なトラブルシューティング手順を書きました
これは、任意のタイプの画像(PNG、JPG、JPEGなど)をバイト配列に変換するためのコードです。
public static byte[] imageConversion(string imageName){
//Initialize a file stream to read the image file
FileStream fs = new FileStream(imageName, FileMode.Open, FileAccess.Read);
//Initialize a byte array with size of stream
byte[] imgByteArr = new byte[fs.Length];
//Read data from the file stream and put into the byte array
fs.Read(imgByteArr, 0, Convert.ToInt32(fs.Length));
//Close a file stream
fs.Close();
return imageByteArr
}
画像をバイト配列に変換します。コードは以下のとおりです。
public byte[] ImageToByteArray(System.Drawing.Image images)
{
using (var _memorystream = new MemoryStream())
{
images.Save(_memorystream ,images.RawFormat);
return _memorystream .ToArray();
}
}
バイト配列を画像に変換しA Generic error occurred in GDI+
ます。コードは次のとおりです。コードは画像保存のハンドルです。
public void SaveImage(string base64String, string filepath)
{
// image convert to base64string is base64String
//File path is which path to save the image.
var bytess = Convert.FromBase64String(base64String);
using (var imageFile = new FileStream(filepath, FileMode.Create))
{
imageFile.Write(bytess, 0, bytess.Length);
imageFile.Flush();
}
}
このコードは、SQLSERVER 2012のテーブルから最初の100行を取得し、行ごとの画像をファイルとしてローカルディスクに保存します
public void SavePicture()
{
SqlConnection con = new SqlConnection("Data Source=localhost;Integrated security=true;database=databasename");
SqlDataAdapter da = new SqlDataAdapter("select top 100 [Name] ,[Picture] From tablename", con);
SqlCommandBuilder MyCB = new SqlCommandBuilder(da);
DataSet ds = new DataSet("tablename");
byte[] MyData = new byte[0];
da.Fill(ds, "tablename");
DataTable table = ds.Tables["tablename"];
for (int i = 0; i < table.Rows.Count;i++ )
{
DataRow myRow;
myRow = ds.Tables["tablename"].Rows[i];
MyData = (byte[])myRow["Picture"];
int ArraySize = new int();
ArraySize = MyData.GetUpperBound(0);
FileStream fs = new FileStream(@"C:\NewFolder\" + myRow["Name"].ToString() + ".jpg", FileMode.OpenOrCreate, FileAccess.Write);
fs.Write(MyData, 0, ArraySize);
fs.Close();
}
}
注意:NewFolder名のディレクトリはC:\に存在する必要があります
System.Drawing.Imaging.ImageFormat.Gif
使用できますimageIn.RawFormat