尽管 Go 提供了强大的图像处理功能,但用户在从多个较小的图像创建单个图像时经常面临挑战。具体来说,如何将两个 PNG 或 JPEG 文件连接起来形成一个完整的图像?
提供的代码揭示了将 PNG 文件读取为 RGBA 格式:
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)
然而,问题的关键在于理解如何将多个 RGBA 数据集组合成单个图像。
解决方案涉及创建一个新的空图像(NewRGBA)足够的大小来容纳两个原始图像。随后,可以使用 Draw 方法将每个图像叠加到扩展图像的指定部分上:
// Load two images imgFile1, err := os.Open("test1.jpg") if err != nil { fmt.Println(err) } imgFile2, err := os.Open("test2.jpg") if err != nil { fmt.Println(err) } img1, _, err := image.Decode(imgFile1) if err != nil { fmt.Println(err) } img2, _, err := image.Decode(imgFile2) if err != nil { fmt.Println(err) } // Starting position of the second image sp2 := image.Point{img1.Bounds().Dx(), 0} // New rectangle for the second image r2 := image.Rectangle{sp2, sp2.Add(img2.Bounds().Size())} // Rectangle for the big image r := image.Rectangle{image.Point{0, 0}, r2.Max} // Create a new image rgba := image.NewRGBA(r) // Draw the two images draw.Draw(rgba, img1.Bounds(), img1, image.Point{0, 0}, draw.Src) draw.Draw(rgba, r2, img2, image.Point{0, 0}, draw.Src) // Export the image out, err := os.Create("./output.jpg") if err != nil { fmt.Println(err) } var opt jpeg.Options opt.Quality = 80 jpeg.Encode(out, rgba, &opt)
注意: 此方法保留第二个图像的高度。如果第一张图片较高,则会被裁剪。
以上是如何在Golang中连接图像?的详细内容。更多信息请关注PHP中文网其他相关文章!