代码拉取完成,页面将自动刷新
package gopdf
import (
"fmt"
"io"
"os"
)
// EmbedFontObj is an embedded font object.
type EmbedFontObj struct {
Data string
zfontpath string
font IFont
getRoot func() *GoPdf
}
func (e *EmbedFontObj) init(funcGetRoot func() *GoPdf) {
e.getRoot = funcGetRoot
}
func (e *EmbedFontObj) protection() *PDFProtection {
return e.getRoot().protection()
}
func (e *EmbedFontObj) write(w io.Writer, objID int) error {
b, err := os.ReadFile(e.zfontpath)
if err != nil {
return err
}
fmt.Fprintf(w, "<</Length %d\n", len(b))
io.WriteString(w, "/Filter /FlateDecode\n")
fmt.Fprintf(w, "/Length1 %d\n", e.font.GetOriginalsize())
io.WriteString(w, ">>\n")
io.WriteString(w, "stream\n")
if e.protection() != nil {
tmp, err := rc4Cip(e.protection().objectkey(objID), b)
if err != nil {
return err
}
w.Write(tmp)
io.WriteString(w, "\n")
} else {
w.Write(b)
}
io.WriteString(w, "\nendstream\n")
return nil
}
func (e *EmbedFontObj) getType() string {
return "EmbedFont"
}
// SetFont sets the font of an embedded font object.
func (e *EmbedFontObj) SetFont(font IFont, zfontpath string) {
e.font = font
e.zfontpath = zfontpath
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。