iOS PDFKit-如何将图像添加到只读的PDF不能被其他标记程序移动/删除?

问题描述

我正在尝试在iOS应用中将图像添加到PDF。该应用程序将与所有其他文本注释一起填写,保存PDF后,它们不应再次可编辑。当我将isReadOnly设置为true时,此选项适用于文本小部件,但不适用于绘制图像的注释。

由于该工具包中没有提供图像批注,因此我们必须将其子类化以绘制图像。那里的所有示例代码仅覆盖draw。苹果公司的sample code也是一样。看来别无选择。

我已经制作了一个操场样本来展示这个。

import PlaygroundSupport
import PDFKit

class MyImageAnnotation: PDFAnnotation {
    var image: UIImage

    required init?(coder: NSCoder) { fatalError("coder not supported") }

    init(bounds: CGRect,image: UIImage) {
        self.image = image
        super.init(bounds: bounds,forType: .stamp,withProperties: nil)
        isReadOnly = true
    }

    override func draw(with box: PDFDisplayBox,in context: CGContext) {
        super.draw(with: box,in: context)
        guard let cgImage = image.cgImage else { return }

        UIGraphicsPushContext(context)
        context.saveGState()

        // Drawing code goes here
        context.draw(cgImage,in: bounds)

        context.restoreGState()
        UIGraphicsPopContext()
    }
}

extension PDFDocument {
    func addImage(_ image: UIImage) {
        guard let page = page(at: 0) else { return }
        let box = page.bounds(for: .mediaBox)
        let area = CGRect(x: box.midX,y: box.midY,width: 128,height: 128)
        let imageAnnotation = MyImageAnnotation(bounds: area,image: image)
        page.addAnnotation(imageAnnotation)
    }
}

// Before running you must add files to the playground's Resources folder (CMD+1)
let pathToPDF = Bundle.main.url(forResource: "document",withExtension: "pdf")!
let pathToIMG = Bundle.main.url(forResource: "image",withExtension: "png")!

// And also manually create the "Shared Playground Data" folder
let newDocPath = playgroundSharedDataDirectory.appendingPathComponent("new_document.pdf")

let doc = try! PDFDocument(data: Data(contentsOf: pathToPDF))!
let img = try! UIImage(data: Data(contentsOf: pathToIMG))!

doc.addImage(img)
doc.write(to: newDocPath)

pdf image

当我打开PDF时,即使在像“预览”这样简单的程序中,它也允许我拖动图像并将其删除。这应该不可编辑,但是可以。

那么我使用PDFKit是否错误或者没有人知道如何使图像注释不可编辑?似乎很基本。更清楚地说,用户稍后仍应能够在其他程序中打开PDF并在其之上进行标记,但可以四处移动/编辑/删除基础注释本身。

现在,我唯一的另一个想法是使用旧的CGPDFDocument并手动绘制它而没有任何注释;但是,它会破坏所有现有的text / etc注释,因此不是一个很好的解决方案。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...