iPhone - 使用文本和图像创建PDF

时间:2011-08-16 06:20:55

标签: iphone cgpdfdocument

用户在我的应用中输入了一些文字,图像是从相机中捕获的。 我想用文字和图片创建PDF? 我知道如何创建URL PDF Creation

中提到的PDF

但我不知道如何使用文本和图像创建PDF。 有人可以建议我使用好的教程或一些示例代码吗?

1 个答案:

答案 0 :(得分:1)

在您提到的链接提供的示例行中,您可以执行类似 -

的操作
CGContextSelectFont (pdfContext, "Arial", 12, kCGEncodingMacRoman);
CGContextSetTextDrawingMode (pdfContext, kCGTextFill);
CGContextSetRGBFillColor (pdfContext, 0, 0, 0, 1);
const char *text = "my text";
CGContextShowTextAtPoint (pdfContext, 50, 375, text, strlen(text)); //Display wherever you want to

您可以以类似的方式使用CGContextDrawImage来显示图像。

HTH,

阿克沙伊