gpt4 book ai didi

ios - 使用swift将图像转换为A4大小的pdf

转载 作者:行者123 更新时间:2023-12-05 04:33:16 34 4
gpt4 key购买 nike

我想将 UIImage 数组转换为 pdf 文件。 PDF 文件页面大小应为 A4。我尝试使用 PDFKIT,但结果不合适。

我想要的:

  1. A4 页面大小
  2. 图像应在页面上居中并缩放(数组图像尺寸不相同)

我尝试了什么:

    func makePDF(images: [UIImage])-> PDFDocument? {
let pdfDoc = PDFDocument()

for (index,image) in images.enumerated() {
let resizedImage = resizeImage(image: image, targetSize: PDFPageSize.A4)
guard let cgImage = resizedImage?.cgImage else { return pdfDoc }
let uiimage = UIImage(cgImage: cgImage, scale: image.scale, orientation: .up)
if let pdfPage = PDFPage(image: uiimage) {
let page = CGRect(x: 0, y: 0, width: 595.2, height: 841.8) // A4, 72 dpi
pdfPage.setBounds(page, for: PDFDisplayBox.mediaBox)
pdfDoc.insert(pdfPage, at: index)
}

}
return pdfDoc
}

func resizeImage(image: UIImage, targetSize: CGSize) -> UIImage? {
let size = image.size
let widthRatio = targetSize.width / size.width
let heightRatio = targetSize.height / size.height
var newSize: CGSize
if(widthRatio > heightRatio) {
newSize = CGSize(width: size.width * heightRatio, height: size.height * heightRatio)
} else {
newSize = CGSize(width: size.width * widthRatio, height: size.height * widthRatio)
}
let rect = CGRect(x: 0, y: 0, width: newSize.width, height: newSize.height)
UIGraphicsBeginImageContextWithOptions(newSize, false, 1.0)
image.draw(in: rect)
let newImage = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return newImage
}

我的输出是:

  1. 图片丢失
  2. 图像裁剪
  3. 不在中心位置

My Output

我的期望输出是:

My Desire Output

我该怎么做?

最佳答案

首先你必须明白为什么你会看到你所看到的,这在一定程度上解释了这一点:

PDFKit PDFView coordinate system add UIImage to PDF Center iOS Swift

由于 PDF 的原点在左下角,当您添加内容时,它会被添加到页面底部,这就是为什么您的图像位于底部。

您可能需要执行以下操作来解决此问题:

  1. 您的图形上下文应该是PDF页面的大小,而不是图像
  2. 您将图像置于图形上下文的中心
  3. 将此图片添加到您的 pdf 页面

以下是我对您的调整大小功能所做的修改:

func resizeImage(image: UIImage, targetSize: CGSize) -> UIImage? {
let size = image.size
let widthRatio = targetSize.width / size.width
let heightRatio = targetSize.height / size.height
var newSize: CGSize

if(widthRatio > heightRatio) {
newSize = CGSize(width: size.width * heightRatio, height: size.height * heightRatio)
} else {
newSize = CGSize(width: size.width * widthRatio, height: size.height * widthRatio)
}

// Calculate the centerX and centerY
let centerX = (targetSize.width - newSize.width) / 2.0
let centerY = (targetSize.height - newSize.height) / 2.0

// The rect of the image should be based on the center calculations
let rect = CGRect(x: centerX,
y: centerY,
width: newSize.width,
height: newSize.height)

// The graphics context should be created with the page dimensions
UIGraphicsBeginImageContextWithOptions(targetSize, false, 1.0)

// The rest remains the same
image.draw(in: rect)
let newImage = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return newImage
}

而且我相信您会在 PDF 页面中获得所需的图像输出:

UIImage added to PDFPage PDFKit centered iOS Swift

Insert UIImage in PDF using PDFKit centered iOS Swift

更新

要改变生成图像的质量,请尝试使用 UIGraphicsBeginImageContextWithOptions 函数的 scale 参数。

您可以传递 2.0 以将比例增加到 2 倍或传递 0 以使用设备的分辨率。

UIGraphicsBeginImageContextWithOptions(targetSize, false, 0.0)

关于ios - 使用swift将图像转换为A4大小的pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71468302/

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