在 Go 中解碼 Base64 編碼圖像
使用 canvas 時,可以獲得 Base64 圖像資料 URL。但是,當嘗試使用 image.DecodeConfig() 解碼此圖像時,您可能會遇到錯誤「未知圖像格式」。
出現此問題的原因是資料 URL 包含 Base64 編碼圖像資料之外的其他資訊。為了正確解碼圖像,您需要刪除前綴:
// Remove the data URL prefix input := strings.Replace(req.PostFormValue("dataurl"), "data:image/png;base64,", "", 1)
此外,您需要在呼叫 image.DecodeConfig() 之前註冊 PNG 映像格式處理程序。這可以透過以下方式實現:
import _ "image/png"
或者,如果您知道確切的圖像格式,則可以直接使用 png.DecodeConfig()。
範例:
import _ "image/png" reader := base64.NewDecoder(base64.StdEncoding, strings.NewReader(input)) imageConfig, _, err := image.DecodeConfig(reader) if err != nil { log.Fatal(err) }
按照以下步驟,您可以成功解碼base64編碼的圖像並獲取其寬度和寬度身高。
以上是如何在 Go 中正確解碼 Base64 編碼影像?的詳細內容。更多資訊請關注PHP中文網其他相關文章!