我如何在golang中将uint64转换为uint?

我如何在golang中将uint64转换为uint?,第1张

概述我有以下功能: func (rc ResizeController) Resize(c *gin.Context) { height := c.Query("height") width := c.Query("width") filepath := c.Query("file") h, err := strconv.ParseUint(height, 10, 我有以下功能:

@H_301_11@func (rc ResizeController) Resize(c *gin.Context) { height := c.query("height") wIDth := c.query("wIDth") filepath := c.query("file") h,err := strconv.ParseUint(height,10,32) w,err := strconv.ParseUint(wIDth,32) file,err := os.Open("./test_images/" + filepath) if err != nil { log.Fatal(err) } image,err := jpeg.Decode(file) if err != nil { log.Fatal(err) } m := resize.Resize(1000,100,image,resize.lanczos3) buf := new(bytes.Buffer) jpeg.Encode(buf,m,nil) response := buf.Bytes() c.Data(200,"image/jpeg",response)}

但是我收到以下错误:

@H_301_11@controllers/resize_controller.go:41: cannot use h (type uint64) as type uint in argument to resize.Resizecontrollers/resize_controller.go:41: cannot use w (type uint64) as type uint in argument to resize.Resize

我从strconv lib尝试了一些不同的功能,没有运气!

提前致谢

解决方法 无需使用任何strconv函数;只做一个 type conversion到uint:

@H_301_11@h64,32)// Todo: check errw64,32)// Todo: check errh := uint(h64)w := uint(w64) 总结

以上是内存溢出为你收集整理的我如何在golang中将uint64转换为uint?全部内容,希望文章能够帮你解决我如何在golang中将uint64转换为uint?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1267744.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存