首頁 > 後端開發 > C++ > 如何將 Base64 字串轉換為映像並保存?

如何將 Base64 字串轉換為映像並保存?

Barbara Streisand
發布: 2025-01-05 16:49:08
原創
823 人瀏覽過

How to Convert a Base64 String to an Image and Save It?

將Base64 字串轉換為圖像並保存

使用Base64 編碼的圖像時,將它們轉換為圖像可能具有挑戰性圖像檔。為了解決這個問題,讓我們探索一個修改後的程式碼片段,它可以有效地將Base64 字串轉換為映像並將其保存以進行儲存:

protected void SaveMyImage_Click(object sender, EventArgs e)
{
    string imageUrl = Hidden1.Value;
    string saveLocation = Server.MapPath("~/PictureUploads/whatever2.png");

    HttpWebRequest imageRequest = (HttpWebRequest)WebRequest.Create(imageUrl);
    WebResponse imageResponse = imageRequest.GetResponse();

    Stream responseStream = imageResponse.GetResponseStream();
    byte[] imageBytes;

    using (var br = new BinaryReader(responseStream))
    {
        var imageString = br.ReadString();
        imageBytes = Convert.FromBase64String(imageString);
    }

    responseStream.Close();
    imageResponse.Close();

    Image image = Image.FromStream(new MemoryStream(imageBytes));

    FileStream fs = new FileStream(saveLocation, FileMode.Create);
    image.Save(fs, ImageFormat.Png);
    fs.Close();
}
登入後複製

在此修改後的程式碼中:

  1. Base64 Conversion:我們使用以下指令從回應流中擷取Base64字串br.ReadString().
  2. Image 物件建立:我們將 Base64 字串轉換為位元組數組,然後用於建立 Image 物件。
  3. 影像保存:我們不將原始位元組寫入文件,而是使用 image.Save() 將影像物件直接儲存到所需位置。這可確保影像以指定格式儲存(本例中為 PNG)。

以上是如何將 Base64 字串轉換為映像並保存?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板