//开启pdf上下文
UIGraphicsBeginPDFContextToFile(path, self.view.bounds, nil)
//开启新的一页后才可以绘制内容
UIGraphicsBeginPDFPage()
//绘制自己想绘制的内容
image?.draw(in:self.view.bounds)
//每次都开启新的一页
UIGraphicsBeginPDFPage()
image?.draw(in:self.view.bounds)
UIGraphicsBeginPDFPage()
image?.draw(in:self.view.bounds)
//绘制结束关闭上下文
UIGraphicsEndPDFContext()
网友评论