Go Base64 图像解码:解决“未知图像格式”错误
在 Go 中,您可以解码 Base64 图像以获得其宽度和宽度使用图像包的高度。但是,在此过程中您可能会遇到“未知图像格式”错误。
解码注意事项:
要正确解码图像,特定图像格式处理程序必须是挂号的。例如,要解码 PNG 图像,应使用以下命令导入 PNG 格式处理程序:
import _ "image/png"
或者,您可以使用格式特定的函数 png.DecodeConfig().
数据 URI 方案
您收到的 Base64 图像数据通常是数据 URI 方案的一部分,其中包括of:
到隔离base64编码的数据,将字符串从媒体后面的逗号中分割出来类型:
input := "data:image/png;base64,iVkhdfjdAjdfirtn=" b64data := input[strings.IndexByte(input, ',')+1:]
示例代码:
使用提供的信息,这是修改后的代码:
package main import ( "fmt" "image/png" "log" "os" "strings" "github.com/nfnt/resize" ) func main() { dataURL := os.Getenv("IMAGE_DATA_URL") if dataURL == "" { log.Fatal("Missing IMAGE_DATA_URL environment variable") } // Remove Data URI scheme prefix b64data := dataURL[strings.IndexByte(dataURL, ',')+1:] // Decode base64 string reader := base64.NewDecoder(base64.StdEncoding, strings.NewReader(b64data)) // Register PNG format handler and decode the image config _ = png.RegisterFormat("png", "png", png.PNGConfig{}) config, _, err := image.DecodeConfig(reader) if err != nil { log.Fatal(err) } // Resize the image newSize := resize.Thumbnail(0, 0, config.Width, config.Height) scaledImage := resize.Resize(uint(newSize.Width), uint(newSize.Height), reader, resize.Lanczos3) // Save the resized image outFile, err := os.Create("resized-image.png") if err != nil { log.Fatal(err) } err = png.Encode(outFile, scaledImage) if err != nil { log.Fatal(err) } fmt.Printf("Image saved to: %s", "resized-image.png") }
请注意,此示例代码还可以使用 resize 包调整图像大小,但这对于解码图像配置来说不是必需的。
以上是为什么在 Go 中解码 Base64 图像时出现'未知图像格式”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!