我在 gin 中有一个接收字节数组的服务器端点。
func UploadImageHandler(c *gin.Context) {
body, err := c.GetRawData()
// how do I make sure this body byte array is image?
}
我需要确保字节数组是图像。
我如何才能在 Go 中进行此检查?
喵喵时光机
相关分类