0

こんにちは、データベースからバイト配列を取得して、.aspx ページにデータベースから画像を表示するために使用できるものに変換しようとしています。私は厳密にc#を使用しています。

これが私のコードです。

SqlCommand picCommand = connection.CreateCommand();
picCommand.CommandText = ("SELECT ItemImage FROM Inventory WHERE ItemName = '" +         DropDownList1.SelectedItem.Text + "';");
connection.Open();

object returnPic; 
returnPic = picCommand.ExecuteScalar();//value that is read as the byte array or intended to be read as byte array.


    connection.Close();


    UTF8Encoding utf8 = new UTF8Encoding();
    //where i intend to convert the 
    byte[] image = utf8.GetBytes(returnPic.ToString()); 


    System.Drawing.Image myImage;

    using (MemoryStream inStream = new MemoryStream())
    {
        inStream.Write(image, 0, image.Length);

        myImage = Bitmap.FromStream(inStream);
    }




    this.ItemImageBox.Equals(myImage);

コードはコンパイルおよび実行されますが、行 myImage = Bitmap.FromStream(instream) を実行するポイントに到達すると、このエラー System.ArgumentException: Parameter is not valid が発生します。私は実際にさまざまなソースを調べてこのコードを取得したので、ここにいる誰かが私が何か間違っているかどうか教えてくれるかもしれません。

よろしくお願いします!

4

2 に答える 2

1

あなたはこのようなことを試すことができ、それはあなたのために働くはずです

public static Image LoadImage(byte[] imageBytes)
{
     Image image = null;
     using (var inStream = new MemoryStream(imageBytes))
     {
        image = Image.FromStream(ms);
     }
     return image;
}
于 2012-11-14T18:16:57.457 に答える
0

これは、バイト配列をビットマップに変換する必要がある拡張メソッドです。この例では、データを Sql Server 2008R2 データベースに保存しています。

    protected void btnParent1Upload_Click(object sender, EventArgs e)
    {
        ScriptManager.GetCurrent(this).RegisterPostBackControl(this.btnParent1Upload);
        FileUpload FileUpload1 = file_ImageParent1;
        string virtualFolder = "~/UpImages/";
        string physicalFolder = Server.MapPath(virtualFolder);
        FileUpload1.SaveAs(physicalFolder + FileUpload1.FileName);
        lbl_ResultParent1.Text = "Your file " + FileUpload1.FileName + " has been uploaded.";
        Parent1Pic.Visible = true;
        Parent1Pic.ImageUrl = virtualFolder + FileUpload1.FileName;
        byte[] imageBytes = PopulateImageBytes(physicalFolder + FileUpload1.FileName);
        ParentsInfo.Parent1Pic = imageBytes;
        imageBytes = null;
        FileUpload1 = null;
    }

    private static byte[] PopulateImageBytes(string p)
    {
        byte[] imageBytes = File.ReadAllBytes(p);
        return imageBytes;
    }

StudentPic を次のように定義しています

public byte[] StudentPic { get; set; }

SQL パラメータの 1 つを次のように定義しています。

sqlcmd.Parameters.AddWithValue("@Picture", (object)StudentPic ?? noImage);

これは、これを行うさまざまな方法の1つを理解するのに役立ちます

于 2012-11-14T18:59:00.353 に答える