dpz7935 2016-03-12 23:36
浏览 63
已采纳

Golang如何串联/附加图像

Go has great image manipulation and data libraries however I'm having trouble creating one big image from smaller ones. Does anyone know how to take two png or jpeg files in Golang and concatenate them to form one big image that encompasses the two (or more) files?

i'm currently reading png files like so:

imgFile, err := os.Open(path)
if err != nil {
    return Image{}, err
}
img, _, err := image.Decode(imgFile)
if err != nil {
    return Image{}, err
}

rgba := image.NewRGBA(img.Bounds())
if rgba.Stride != rgba.Rect.Size().X*4 {
    return Image{}, fmt.Errorf("unsupported stride")
}
draw.Draw(rgba, rgba.Bounds(), img, image.Point{0, 0}, draw.Src)

I'm confused on how to take this png RGBA data and concatenate with other RGBA data and/or combine that into an "empty" image.

  • 写回答

2条回答 默认 最新

  • doucaishou0074 2016-03-13 01:42
    关注

    Create a new empty image (NewRGBA) that has bounds large enough to hold both images. Then use the Draw method to draw each image on appropriate parts of this new large image.

    Here are steps with code.

    Load two images.

    imgFile1, err := os.Open("test1.jpg")
    imgFile2, err := os.Open("test2.jpg")
    if err != nil {
        fmt.Println(err)
    }
    img1, _, err := image.Decode(imgFile1)
    img2, _, err := image.Decode(imgFile2)
    if err != nil {
        fmt.Println(err)
    }
    

    Let's draw the second image to the right of the first image. So the starting point of it should be at (w, 0) where w is the width of the first image. The bottom right point of the first image will be the bottom left point of the second.

    //starting position of the second image (bottom left)
    sp2 := image.Point{img1.Bounds().Dx(), 0}
    

    It should be in a rectangle large enough to hold it.

    //new rectangle for the second image
    r2 := image.Rectangle{sp2, sp2.Add(img2.Bounds().Size())}
    

    Now create a large rectangle that will be wide enough to hold both images.

    //rectangle for the big image
    r := image.Rectangle{image.Point{0, 0}, r2.Max}
    

    Note This large image will have the height of the second image. If the first image is higher it will be cropped.

    Create a new image.

    rgba := image.NewRGBA(r)
    

    Now you can draw the two images into this new image

    draw.Draw(rgba, img1.Bounds(), img1, image.Point{0, 0}, draw.Src)
    draw.Draw(rgba, r2, img2, image.Point{0, 0}, draw.Src)
    

    Since we created r2 so its to the right of the first image, second image will be drawn to the right.

    Finally you can export it.

    out, err := os.Create("./output.jpg")
    if err != nil {
        fmt.Println(err)
    }
    
    var opt jpeg.Options
    opt.Quality = 80
    
    jpeg.Encode(out, rgba, &opt)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看