用户在我的应用中输入了一些文字,图像是从相机中捕获的。 我想用文字和图片创建PDF? 我知道如何创建URL PDF Creation
中提到的PDF但我不知道如何使用文本和图像创建PDF。 有人可以建议我使用好的教程或一些示例代码吗?
答案 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,
阿克沙伊