ZBLOG

golang 图片等比缩放

在 Golang 中,可以使用 image 和 draw 包来完成图片等比缩放。

首先,需要加载原始图片。假设要对名为 “test.jpg” 的图片进行等比缩放,代码如下:

  1. import (
  2. "image"
  3. "os"
  4. )
  5. func main() {
  6. file, err := os.Open("test.jpg")
  7. if err != nil {
  8. panic(err)
  9. }
  10. defer file.Close()
  11. img, _, err := image.Decode(file)
  12. if err != nil {
  13. panic(err)
  14. }
  15. // 处理 img ...
  16. }

接着,可以根据目标宽度和高度计算缩放比例,并创建一个新的图像对象:

  1. import (
  2. "image"
  3. "image/draw"
  4. "image/jpeg"
  5. "os"
  6. )
  7. func main() {
  8. file, err := os.Open("test.jpg")
  9. if err != nil {
  10. panic(err)
  11. }
  12. defer file.Close()
  13. img, _, err := image.Decode(file)
  14. if err != nil {
  15. panic(err)
  16. }
  17. // 计算缩放比例
  18. width := 300 // 目标宽度
  19. height := 200 // 目标高度
  20. bounds := img.Bounds()
  21. wRatio := float64(bounds.Dx()) / float64(width)
  22. hRatio := float64(bounds.Dy()) / float64(height)
  23. ratio := wRatio
  24. if hRatio > wRatio {
  25. ratio = hRatio
  26. }
  27. // 创建新的图像对象
  28. newWidth := int(float64(bounds.Dx()) / ratio)
  29. newHeight := int(float64(bounds.Dy()) / ratio)
  30. newImg := image.NewRGBA(image.Rect(0, 0, newWidth, newHeight))
  31. // 将原始图像绘制到新的图像对象中
  32. draw.CatmullRom.Scale(newImg, newImg.Bounds(), img, bounds, draw.Over, nil)
  33. // 将新的图像保存到文件中
  34. outFile, err := os.Create("test_resized.jpg")
  35. if err != nil {
  36. panic(err)
  37. }
  38. defer outFile.Close()
  39. jpeg.Encode(outFile, newImg, nil)
  40. }

在上面的代码中,使用 CatmullRom 算法来进行缩放操作,并将新的图像保存到 “test_resized.jpg” 文件中。

完整代码如下:

  1. package main
  2. import (
  3. "image"
  4. "image/draw"
  5. "image/jpeg"
  6. "os"
  7. )
  8. func main() {
  9. file, err := os.Open("test.jpg")
  10. if err != nil {
  11. panic(err)
  12. }
  13. defer file.Close()
  14. img, _, err := image.Decode(file)
  15. if err != nil {
  16. panic(err)
  17. }
  18. // 计算缩放比例
  19. width := 300 // 目标宽度
  20. height := 200 // 目标高度
  21. bounds := img.Bounds()
  22. wRatio := float64(bounds.Dx()) / float64(width)
  23. hRatio := float64(bounds.Dy()) / float64(height)
  24. ratio := wRatio
  25. if hRatio > wRatio {
  26. ratio = hRatio
  27. }
  28. // 创建新的图像对象
  29. newWidth := int(float64(bounds.Dx()) / ratio)
  30. newHeight := int(float64(bounds.Dy()) / ratio)
  31. newImg := image.NewRGBA(image.Rect(0, 0, newWidth, newHeight))
  32. // 将原始图像绘制到新的图像对象中
  33. draw.CatmullRom.Scale(newImg, newImg.Bounds(), img, bounds, draw.Over, nil)
  34. // 将新的图像保存到文件中
  35. outFile, err := os.Create("test_resized.jpg")
  36. if err != nil {
  37. panic(err)
  38. }
  39. defer outFile.Close()
  40. jpeg.Encode(outFile, newImg, nil)
  41. }

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:https://golang.0voice.com/?id=244

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?