0

我正在为现有的 PDFView 注释图像。这是我目前的状态: 在此处输入图像描述

以下是我想要的状态: 在此处输入图像描述

一句话,我想实现:

  1. 我的图像注释的圆角
  2. 图像还应该保持我尝试并搜索了许多来源但没有一个有效的原始纵横比。

以下是我当前的代码:

class PDFImageAnnotation: PDFAnnotation {

var image: UIImage?

convenience init(_ image: UIImage?, bounds: CGRect, properties: [AnyHashable : Any]?) {
    self.init(bounds: bounds, forType: PDFAnnotationSubtype.stamp, withProperties: properties)
    self.image = image
}

override func draw(with box: PDFDisplayBox, in context: CGContext) {
    super.draw(with: box, in: context)

    // Drawing the image within the annotation's bounds.
    guard let cgImage = image?.cgImage else { return }
    context.draw(cgImage, in: bounds)
}

}

ViewDidLoad 中的实现:

if let image = pet.picture?.getImage() {
        let imageAnnotation = PDFImageAnnotation(image, bounds: CGRect(x: 80, y: 1100, width: 300, height: 300), properties: nil)
        pdfView.currentPage?.addAnnotation(imageAnnotation)
    }

任何建议都会有所帮助,因为我现在处于死胡同,非常感谢!

4

1 回答 1

0

好的,我想通了,事实证明我应该首先将图像剪辑为圆形格式,然后使用此扩展名将其注释到 PDF:https ://stackoverflow.com/a/64981764/11079192

于 2021-11-24T06:48:24.577 回答