Golang图片操作:如何进行图片的背景透明化和扩散

介绍

在我们进行图像处理时经常会遇到需要将图片背景透明化或是将图片进行一定程度的扩散,这时候我们可以使用Golang中的image包中的图像处理工具实现背景透明化和图片扩散的效果。

背景透明化

透明化的原理

透明化的原理就是将图片中与背景相同或相近的颜色替换为透明,并将透明部分的颜色值调整为0,这样原本的背景色部分就会变成透明的。

实现步骤

在Golang中可以使用image包中的图像处理工具快速实现背景透明化的效果。

首先需要导入如下命令:

import (

"image"

"image/png"

"image/color"

"os"

)

然后将需要处理的图片使用image包中的Decode函数进行读取:

sourceFile, err := os.Open("source.png")

if err != nil {

panic(err)

}

defer sourceFile.Close()

sourceImg, err := png.Decode(sourceFile)

if err != nil {

panic(err)

}

接着根据需要将图片背景颜色替换为透明,并将透明部分的颜色值调整为0:

// 获取图片大小

size := sourceImg.Bounds().Size()

// 创建新的图片

newImg := image.NewRGBA(sourceImg.Bounds())

// 将原图中所有的像素点逐一比较,并将背景色部分替换为透明色

for x := 0; x < size.X; x++ {

for y := 0; y < size.Y; y++ {

color := sourceImg.At(x, y)

if color == color.RGBA{0, 255, 0, 255} {

newImg.SetRGBA(x, y, color.RGBA{0, 0, 0, 0})

} else {

newImg.Set(x, y, color)

}

}

}

最后将处理好的图片进行输出保存:

outputFile, err := os.Create("output.png")

if err != nil {

panic(err)

}

defer outputFile.Close()

png.Encode(outputFile, newImg)

图片扩散

扩散的原理

扩散的原理就是通过改变像素点的颜色值,来达到图片扩散的效果。

实现步骤

在Golang中也可以使用image包中的图像处理工具实现图片扩散的效果。

首先同样需要导入如下命令:

import (

"image"

"image/jpeg"

"os"

)

然后将需要处理的图片使用image包中的Decode函数进行读取:

sourceFile, err := os.Open("source.jpg")

if err != nil {

panic(err)

}

defer sourceFile.Close()

sourceImg, err := jpeg.Decode(sourceFile)

if err != nil {

panic(err)

}

接着根据需要对图片进行扩散处理,这里我们可以将像素点的颜色值增加一定的值来实现扩散的效果:

// 获取图片大小

size := sourceImg.Bounds().Size()

// 创建新的图片

newImg := image.NewRGBA(sourceImg.Bounds())

// 对图片中的每个像素点的颜色值进行修改

for x := 1; x < size.X; x++ {

for y := 1; y < size.Y; y++ {

c1 := sourceImg.At(x - 1, y - 1)

c2 := sourceImg.At(x, y - 1)

c3 := sourceImg.At(x + 1, y - 1)

c4 := sourceImg.At(x - 1, y)

c5 := sourceImg.At(x, y)

c6 := sourceImg.At(x + 1, y)

c7 := sourceImg.At(x - 1, y + 1)

c8 := sourceImg.At(x, y + 1)

c9 := sourceImg.At(x + 1, y + 1)

r1, g1, b1, a1 := c1.RGBA()

r2, g2, b2, a2 := c2.RGBA()

r3, g3, b3, a3 := c3.RGBA()

r4, g4, b4, a4 := c4.RGBA()

r5, g5, b5, a5 := c5.RGBA()

r6, g6, b6, a6 := c6.RGBA()

r7, g7, b7, a7 := c7.RGBA()

r8, g8, b8, a8 := c8.RGBA()

r9, g9, b9, a9 := c9.RGBA()

r := int(r1) + int(r2) + int(r3) + int(r4) + int(r5) + int(r6) + int(r7) + int(r8) + int(r9)

g := int(g1) + int(g2) + int(g3) + int(g4) + int(g5) + int(g6) + int(g7) + int(g8) + int(g9)

b := int(b1) + int(b2) + int(b3) + int(b4) + int(b5) + int(b6) + int(b7) + int(b8) + int(b9)

a := int(a1) + int(a2) + int(a3) + int(a4) + int(a5) + int(a6) + int(a7) + int(a8) + int(a9)

newImg.SetRGBA(x, y, color.RGBA{uint8(r / 9), uint8(g / 9), uint8(b / 9), uint8(a / 9)})

}

}

最后将处理好的图片进行输出保存:

outputFile, err := os.Create("output.jpg")

if err != nil {

panic(err)

}

defer outputFile.Close()

jpeg.Encode(outputFile, newImg, nil)

总结

在Golang中,我们可以借助image包提供的图像处理工具,轻松实现图像的背景透明化和扩散效果。此外,在进行图像处理的时候,我们也可以结合一些算法或是方法,来实现不同的图像处理效果,同时也可以根据不同的项目需求,进行更灵活地调整和实现。

免责声明:本文来自互联网,本站所有信息(包括但不限于文字、视频、音频、数据及图表),不保证该信息的准确性、真实性、完整性、有效性、及时性、原创性等,版权归属于原作者,如无意侵犯媒体或个人知识产权,请来电或致函告之,本站将在第一时间处理。猿码集站发布此文目的在于促进信息交流,此文观点与本站立场无关,不承担任何责任。

后端开发标签