sql >> データベース >  >> RDS >> Oracle

「System.Drawing.Image」を「System.Web.UI.WebControls.Image」に追加する方法

    画像のバイト配列を画像に変換する簡単な方法が必要なようです。問題ない。 記事 を見つけました それは私を大いに助けました。

        System.Web.UI.WebControls.Image image = (System.Web.UI.WebControls.Image)e.Item.FindControl("image");
    
        if (!String.IsNullOrEmpty(currentAd.PictureFileName))
        {
            image.ImageUrl = GetImage(currentAd.PictureFileContents);
        }
        else
        {
            image.Visible = false;
        }
    
        //The actual converting function
        public string GetImage(object img)
        {
            return "data:image/jpg;base64," + Convert.ToBase64String((byte[])img);
        }
    

    PictureFileContentsはByte[]であり、これがGetImage関数がオブジェクトとして取っているものです。



    1. 動的列と結合からのカウントを使用したPostgreSQLクエリ

    2. 単一のクエリを使用して、複数のテーブルからプルします

    3. PythonリストからPostgreSQL配列へ

    4. Pythonを介してMySQLに日付と時刻を更新する