gpt4 book ai didi

go - jung-kurt/gofpdf TM商标符号未正确呈现

转载 作者:行者123 更新时间:2023-12-01 22:24:22 25 4
gpt4 key购买 nike

stringTMSymbol := "™️"
pdf.TransformBegin()
pdf.TransformTranslate(x, y)
pdf.Line(0.0, 0.0, w, 0.0)
pdf.SetXY(0, 0.0)
pdf.SetFont("Arial", "", 14)
pdf.CellFormat(w, 0.33, "URN" + stringTMSymbol, "", 0, "C", false, 0, "")
pdf.Line(0, 0.32, w, 0.32)
pdf.TransformEnd()

该代码示例生成的PDF包含无法识别的字符:

enter image description here

看起来应该像这样:
URN™️
我想这是一个字符编码问题。如何使用jung-kurt / gofpdf在pdf上呈现™️符号?

最佳答案

解决了

https://godoc.org/github.com/jung-kurt/gofpdf#Fpdf.UnicodeTranslatorFromDescriptor

按照此示例:

https://github.com/jung-kurt/gofpdf/issues/6

tr := pdf.UnicodeTranslatorFromDescriptor("")
pdf.CellFormat(w, 0.33, "URN" + tr(stringTMSymbol), "", 0, "C", false, 0, "")

关于go - jung-kurt/gofpdf TM商标符号未正确呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60937040/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com