0 Star 0 Fork 0

shallot/Go开发工具集

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
common.go 385 Bytes
一键复制 编辑 原始数据 按行查看 历史
shallot 提交于 2024-10-15 22:05 . 添加图片压缩库。
package imgresize
import (
"bytes"
"os"
)
// 压缩参数
type Params struct {
Width uint // 宽度,如果为0,则表示是等比例缩放
Height uint // 高度,如果为0,则表示是等比例缩放
Quality int // 质量,0-100
}
// 通用方法
type Converter interface {
// 转换
Convert(fileObj *os.File, params Params) (imageBuf bytes.Buffer, err error)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/gxsshallot/gotool.git
git@gitee.com:gxsshallot/gotool.git
gxsshallot
gotool
Go开发工具集
790eabebc8df

搜索帮助