2 Star 0 Fork 0

hero/momo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pngdata.go 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
hero 提交于 2024-11-04 11:45 . upd:目录结构调整
/**
* @Author Awen
* @Date 2024/06/01
* @Email wengaolng@gmail.com
**/
package imagedata
import (
"fmt"
"image"
"gitee.com/linqwen/momo/app/rbac/captcha/base/codec"
"gitee.com/linqwen/momo/app/rbac/captcha/base/option"
)
// PNGImageData .
type PNGImageData interface {
Get() image.Image
ToBytes() []byte
ToBase64() string
SaveToFile(filepath string) error
}
var _ PNGImageData = (*pngImageDta)(nil)
// pngImageDta .
type pngImageDta struct {
image image.Image
}
// NewPNGImageData .
func NewPNGImageData(img image.Image) PNGImageData {
return &pngImageDta{
image: img,
}
}
// Get is get the original picture
func (c *pngImageDta) Get() image.Image {
return c.image
}
// SaveToFile is to save PNG as a file
func (c *pngImageDta) SaveToFile(filepath string) error {
if c.image == nil {
return fmt.Errorf("missing image data")
}
return saveToFile(c.image, filepath, true, option.QualityNone)
}
// ToBytes is to convert PNG into byte array
func (c *pngImageDta) ToBytes() []byte {
if c.image == nil {
return []byte{}
}
return codec.EncodePNGToByte(c.image)
}
// ToBase64 is to convert PNG into base64
func (c *pngImageDta) ToBase64() string {
if c.image == nil {
return ""
}
return codec.EncodePNGToBase64(c.image)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/linqwen/momo.git
git@gitee.com:linqwen/momo.git
linqwen
momo
momo
v1.1.35

搜索帮助