如何将我的 Xcode 项目中存在的图像添加到 HTML 字符串中以打印输出。
我尝试了以下代码,但图像不打印,而是在 PDF 中出现一个空白框。
-(NSString *)prepareHTMLText {
NSMutableString *body = [NSMutableString stringWithString:@"<!DOCTYPE html><html><body>"];
[body appendString:@"<h2>Ingredients</h2>"];
[body appendFormat:@"<p>%@ %@</p>", @"text", @"TEStText"];
// [body appendFormat:@"<img src=\"%@\" alt=\"\" height=\"100\" width=\"100\"/>",[[NSBundle mainBundle] pathForResource:@"edit" ofType:@"png"]];
[body appendFormat:@"<img src=\"%@\"/>",[UIImage imageNamed:@"edit.png"]];
[body appendString:@"</body></html>"];
return body;
}
我得到了如上所述的输出