我正在打印我自定义的视图以打印来自 imageView 的一些文本和图像。
以下代码有效,但出现的不是图像,而是一个空白框。
-(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=\"%@\"/>", myImageView.image];
[body appendString:@"</body></html>"];
return body;
}