जवाबों:
छवि को बाइट सरणी में बदलने के लिए नमूना कोड
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);
।
आप के लिए एक छवि वस्तु परिवर्तित करने के लिए 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-बिट) को बदल दिया है या छवि के रिज़ॉल्यूशन (डीपीआई) को अनदेखा कर दिया है।
// 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 फ़ाइल से छवि प्राप्त करने के लिए आपको फ़ाइल का उपयोग करके फ़ाइल को बाइट सरणी में पढ़ना चाहिए। ReadAllBytes ():
Bitmap newBitmap = GetImageFromByteArray(File.ReadAllBytes(fileName));
यह बिटमैप से जुड़ी समस्याओं से बचता है, जो अपनी स्रोत धारा को खुला रखना चाहते हैं, और कुछ ने उस समस्या के लिए वर्कअराउंड का सुझाव दिया है जिसके परिणामस्वरूप स्रोत फ़ाइल लॉक रखी जा रही है।
ImageConverter _imageConverter = new ImageConverter(); lock(SourceImage) { return (byte[])_imageConverter.ConvertTo(SourceImage, typeof(byte[])); }
जहां यह 2 अलग-अलग आकारों के सरणियों में परिणाम देगा। यह आमतौर पर लगभग 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 = 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
[एनबी] यदि आप अभी भी ब्राउज़र में छवि नहीं देखते हैं तो मैंने एक विस्तृत समस्या निवारण चरण लिखा है
यह किसी भी प्रकार की छवि (उदाहरण के लिए पीएनजी, जेपीजी, जेपीईजी) को बाइट सरणी में परिवर्तित करने के लिए कोड है
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