我使用 swift PDFKit 的PDFImageAnnotation()
方法将图像添加到 pdf 中。
圆形图像非常适合孔,但我在图像后面得到了这个奇怪的占位符线。有谁知道如何摆脱这些线?我已经在这里呆了好几个小时了。非常感谢!
我在 ViewDidLoad() 中的实现:
if let image = pet.picture?.getImage() {
let circledImage = image.circleMasked
let imageAnnotation = PDFImageAnnotation( circledImage, bounds: CGRect(x: 100, y: 1100, width: 350, height: 350), properties: nil)
pdfView.currentPage?.addAnnotation(imageAnnotation)
}