バイトを画像に変換していますが、エラーが発生します
パラメータが無効です
コードを貼り付けています。親切にコードをチェックして、私が正しいか間違っているかを提案してください。
Image arr1 = byteArrayToImage(Bytess);
これが関数です。
public static Image byteArrayToImage(byte[] byteArrayIn)
{
if (null == byteArrayIn || byteArrayIn.Length == 0)
return null;
MemoryStream ms = new MemoryStream(byteArrayIn);
try
{
Process currentProcess1 = Process.GetCurrentProcess();
Image returnImage = Image.FromStream(ms);
return returnImage;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
多くのテクニックとソリューションを適用しましたが、うまくいきませんでした
あなたの答えをいただければ幸いです。
ありがとう