1 Star 0 Fork 1

gzlwz/golang-pdfcpu

forked from Deeao/golang-pdfcpu 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
page.go 2.65 KB
一键复制 编辑 原始数据 按行查看 历史
liuweizhi 提交于 2024-12-10 16:33 . fix: 全局替换module名称
/*
Copyright 2022 The pdfcpu Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package model
import (
"bytes"
"strconv"
"gitee.com/gzlwz/golang-pdfcpu/pkg/pdfcpu/color"
"gitee.com/gzlwz/golang-pdfcpu/pkg/pdfcpu/draw"
"gitee.com/gzlwz/golang-pdfcpu/pkg/pdfcpu/types"
)
type Resource struct {
ID string
IndRef *types.IndirectRef
}
// FontResource represents an existing PDF font resource.
type FontResource struct {
Res Resource
Lang string
CIDSet *types.IndirectRef
FontFile *types.IndirectRef
ToUnicode *types.IndirectRef
W *types.IndirectRef
}
// FontMap maps font names to font resources.
type FontMap map[string]FontResource
// EnsureKey registers fontName with corresponding font resource id.
func (fm FontMap) EnsureKey(fontName string) string {
// TODO userfontname prefix
for k, v := range fm {
if k == fontName {
return v.Res.ID
}
}
key := "F" + strconv.Itoa(len(fm))
fm[fontName] = FontResource{Res: Resource{ID: key}}
return key
}
// ImageResource represents an existing PDF image resource.
type ImageResource struct {
Res Resource
Width int
Height int
}
// ImageMap maps image filenames to image resources.
type ImageMap map[string]ImageResource
type FieldAnnotation struct {
Dict types.Dict
IndRef *types.IndirectRef
Ind int
Field bool
Kids types.Array
}
// Page represents rendered page content.
type Page struct {
MediaBox *types.Rectangle
CropBox *types.Rectangle
Fm FontMap
Im ImageMap
Annots []FieldAnnotation
AnnotTabs map[int]FieldAnnotation
LinkAnnots []LinkAnnotation
Buf *bytes.Buffer
Fields types.Array
}
// NewPage creates a page for given mediaBox and cropBox.
func NewPage(mediaBox, cropBox *types.Rectangle) Page {
return Page{
MediaBox: mediaBox,
CropBox: cropBox,
Fm: FontMap{},
Im: ImageMap{},
AnnotTabs: map[int]FieldAnnotation{},
Buf: new(bytes.Buffer)}
}
// NewPageWithBg creates a page for a mediaBox.
func NewPageWithBg(mediaBox *types.Rectangle, c color.SimpleColor) Page {
p := Page{MediaBox: mediaBox, Fm: FontMap{}, Im: ImageMap{}, Buf: new(bytes.Buffer)}
draw.FillRectNoBorder(p.Buf, mediaBox, c)
return p
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/gzlwz/golang-pdfcpu.git
git@gitee.com:gzlwz/golang-pdfcpu.git
gzlwz
golang-pdfcpu
golang-pdfcpu
v0.0.2

搜索帮助

0d507c66 1850385 C8b1a773 1850385