1 Star 0 Fork 0

广州捷仓科技有限公司/gopdf

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cache_content_color_cmyk.go 409 Bytes
一键复制 编辑 原始数据 按行查看 历史
package gopdf
import (
"fmt"
"io"
)
const colorTypeStrokeCMYK = "K"
const colorTypeFillCMYK = "k"
type cacheContentColorCMYK struct {
colorType string
c, m, y, k uint8
}
func (c *cacheContentColorCMYK) write(w io.Writer, protection *PDFProtection) error {
fmt.Fprintf(w, "%.2f %.2f %.2f %.2f %s\n", float64(c.c)/100, float64(c.m)/100, float64(c.y)/100, float64(c.k)/100, c.colorType)
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/jiecang-tech/gopdf.git
git@gitee.com:jiecang-tech/gopdf.git
jiecang-tech
gopdf
gopdf
master

搜索帮助