将带有图像的NSAttributedString保存到RTF文件时出现问题

时间:2014-04-29 16:29:49

标签: ios ios7 nsattributedstring nstextattachment

我有一些输出是一个非常简单的RTF文件。当我生成此文档时,用户可以通过电子邮件发送它。这一切都很好。该文件看起来不错。一旦我有NSAttributedString,我创建一个NSData块,并将其写入文件,如下所示:

NSData* rtfData = [attrString dataFromRange:NSMakeRange(0, [attrString length]) documentAttributes:@{NSDocumentTypeDocumentAttribute: NSRTFTextDocumentType} error:&error];

可以通过电子邮件发送此文件。当我检查电子邮件时,一切都很好。

现在,我的任务是在文档的顶部添加一个UIImage。很好,所以我正在创建一个这样的属性字符串:

NSTextAttachment *attachment = [[NSTextAttachment alloc] init];

UIImage* image = [UIImage imageNamed:@"logo"];
attachment.image = image;
attachment.bounds = CGRectMake(0.0f, 0.0f, image.size.width, image.size.height);

NSMutableAttributedString *imageAttrString = [[NSAttributedString attributedStringWithAttachment:attachment] mutableCopy];

// sets the paragraph styling of the text attachment

NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init] ;

[paragraphStyle setAlignment:NSTextAlignmentCenter];            // centers image horizontally

[paragraphStyle setParagraphSpacing:10.0f];   // adds some padding between the image and the following section

[imageAttrString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [imageAttrString length])];
[imageAttrString appendAttributedString:[[NSAttributedString alloc] initWithString:@"\n\n"]];

此时,在Xcode中,我可以对imageAttrString进行QuickLook,并且绘制得很好。

一旦构建了这个字符串,我就是这样做的:

[attrString appendAttributedString:imageAttrString];

然后添加我最初生成的所有其他属性文本。

现在查看文件时,没有图像。 QuickLook在调试器中看起来很好,但在最终输出中没有图像。

提前感谢您提供任何帮助。

2 个答案:

答案 0 :(得分:5)

正如Andris所说,Apple RTF实现不支持嵌入式图像。

RTFD不是一个真正的替代方案,因为只有少数OS X应用程序可以打开RTFD文件。例如MS Office不能。

在某些情况下,创建包含嵌入图像的HTML文件可能有所帮助,但是 - 例如 - 大多数电子邮件客户端不支持带有嵌入图像的HTML(Apple Mail会支持,但Outlook不支持)。

但幸运的是,有一个解决方案可以创建带有嵌入式图像的真实RTF文件!

由于RTF格式当然支持嵌入式图像(只有Apples实现不支持),NSAttributedStrings(NSTextAttachments)中的图像可以(手动)编码到RTF流中。

以下类别完成了所有必要的工作:

/**
 NSAttributedString (MMRTFWithImages)

 */
@interface NSAttributedString (MMRTFWithImages)

- (NSString *)encodeRTFWithImages;

@end

/**
 NSAttributedString (MMRTFWithImages)

 */
@implementation NSAttributedString (MMRTFWithImages)

/*
 encodeRTFWithImages

 */
- (NSString *)encodeRTFWithImages {

    NSMutableAttributedString*  stringToEncode = [[NSMutableAttributedString alloc] initWithAttributedString:self];
    NSRange                     strRange = NSMakeRange(0, stringToEncode.length);

    //
    // Prepare the attributed string by removing the text attachments (images) and replacing them by
    // references to the images dictionary
    NSMutableDictionary*        attachmentDictionary = [NSMutableDictionary dictionary];
    while (strRange.length) {
        // Get the next text attachment
        NSRange effectiveRange;
        NSTextAttachment* textAttachment = [stringToEncode attribute:NSAttachmentAttributeName
                                                             atIndex:strRange.location
                                                      effectiveRange:&effectiveRange];

        strRange = NSMakeRange(NSMaxRange(effectiveRange), NSMaxRange(strRange) - NSMaxRange(effectiveRange));

        if (textAttachment) {
            // Text attachment found -> store image to image dictionary and remove the attachment
            NSFileWrapper*  fileWrapper = [textAttachment fileWrapper];

            UIImage*    image = [[UIImage alloc] initWithData:[fileWrapper regularFileContents]];
            // Kepp image size
            UIImage*    scaledImage = [self imageFromImage:image
                                               withSize:textAttachment.bounds.size];
            NSString*   imageKey = [NSString stringWithFormat:@"_MM_Encoded_Image#%zi_", [scaledImage hash]];
            [attachmentDictionary setObject:scaledImage
                                     forKey:imageKey];

            [stringToEncode removeAttribute:NSAttachmentAttributeName
                                      range:effectiveRange];
            [stringToEncode replaceCharactersInRange:effectiveRange
                                          withString:imageKey];
            strRange.length += [imageKey length] - 1;
        } // if
    } // while

    //
    // Create the RTF stream; without images but including our references
    NSData*             rtfData = [stringToEncode dataFromRange:NSMakeRange(0, stringToEncode.length)
                                    documentAttributes:@{
                                                         NSDocumentTypeDocumentAttribute:   NSRTFTextDocumentType
                                                         }
                                                 error:NULL];
    NSMutableString*    rtfString = [[NSMutableString alloc] initWithData:rtfData
                                                              encoding:NSASCIIStringEncoding];

    //
    // Replace the image references with hex encoded image data
    for (id key in attachmentDictionary) {
        NSRange     keyRange = [rtfString rangeOfString:(NSString*)key];
        if (NSNotFound != keyRange.location) {
            // Reference found -> replace with hex coded image data
            UIImage*    image = [attachmentDictionary objectForKey:key];
            NSData*     pngData = UIImagePNGRepresentation(image);

            NSString*   hexCodedString = [self hexadecimalRepresentation:pngData];
            NSString*   encodedImage = [NSString stringWithFormat:@"{\\*\\shppict {\\pict \\pngblip %@}}", hexCodedString];

            [rtfString replaceCharactersInRange:keyRange withString:encodedImage];
        }
    }
    return rtfString;
}

/*
 imageFromImage:withSize:

 Scales the input image to pSize
 */
- (UIImage *)imageFromImage:(UIImage *)pImage
                   withSize:(CGSize)pSize {

    UIGraphicsBeginImageContextWithOptions(pSize, NO, 0.0);
    [pImage drawInRect:CGRectMake(0, 0, pSize.width, pSize.height)];

    UIImage*    resultImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return resultImage;
}

/*
 hexadecimalRepresentation:

 Returns a hex codes string for all bytes in a NSData object
 */
- (NSString *) hexadecimalRepresentation:(NSData *)pData {

    static const char*  hexDigits = "0123456789ABCDEF";

    NSString*   result = nil;

    size_t      length = pData.length;
    if (length) {

        NSMutableData*  tempData = [NSMutableData dataWithLength:(length << 1)];    // double length
        if (tempData) {
            const unsigned char*    src = [pData bytes];
            unsigned char*          dst = [tempData mutableBytes];

            if ((src) &&
                (dst)) {
                // encode nibbles
                while (length--) {
                    *dst++ = hexDigits[(*src >> 4) & 0x0F];
                    *dst++ = hexDigits[(*src++ & 0x0F)];
                } // while

                result = [[NSString alloc] initWithData:tempData
                                               encoding:NSASCIIStringEncoding];
            } // if
        } // if
    } // if
    return result;
}

@end

基本想法取自this article

答案 1 :(得分:4)

尽管RTF确实支持Windows上的嵌入式图像,但显然它并不适用于OS X.RTF是由Microsoft开发的,他们在1.5版本中添加了嵌入式图像(http://en.wikipedia.org/wiki/Rich_Text_Format#Version_changes)。我认为Apple采用了早期版本的格式,他们对文档中图像的解决方案是RTFD。以下是Apple文档中关于RTF的内容:

  

RTF格式(RTF)是Microsoft Corporation设计的文本格式化语言。您可以使用带有散布的RTF命令,组和转义序列的纯文本来表示字符,段落和文档格式属性。 RTF广泛用作文档交换格式,用于跨应用程序和计算平台传输文档及其格式信息。 Apple已使用自定义命令扩展了RTF,本章将介绍这些命令。

所以没有提到图像。最后为了证明RTF不支持Mac上的图像,下载this RTF document - 它将在Windows写字板中显示照片,并且不会在OS X TextEdit中显示它。

正如Larme所提到的 - 你应该在添加附件时选择RTFD文件类型。来自维基百科:

  

RTF格式目录,也称为RTFD(由于其扩展名为.rtfd),或带有附件的RTF格式

虽然您将能够获得包含文本和图像的NSData对象(根据其大小来判断),但是通过dataFromRange:documentAttributes:@{NSDocumentTypeDocumentAttribute: NSRTFDTextDocumentType} error:],您可能无法保存它以便它可以打开成功。至少 - 我无法做到这一点。

这可能是因为实际上RTFD不是文件格式 - 它是一种捆绑的格式。要检查它,您可以在Mac上使用TextEdit来创建新文档,向其添加图像和文本并将其另存为文件。然后右键单击该文件并选择“显示包内容”,您将注意到该目录包含您的图像和RTF格式的文本。

但是,您可以使用以下代码成功保存此文档

NSFileWrapper *fileWrapper = [imageAttrString fileWrapperFromRange:NSMakeRange(0, [imageAttrString length]) documentAttributes:@{NSDocumentTypeDocumentAttribute: NSRTFDTextDocumentType} error:&error];
[fileWrapper writeToURL:yourFileURL options:NSFileWrapperWritingAtomic originalContentsURL:nil error:&error];

因为显然NSFileWrapper知道如何处理RTFD文档,而NSData不知道它包含什么。

然而,主要问题仍然存在 - 如何通过电子邮件发送?由于RTFD文档不是文件目录,我说它不太适合通过电子邮件发送,然而您可以压缩它并使用扩展程序发送 .rtfd.zip 即可。这里的扩展是至关重要的,因为它会告诉Mail app当用户点击它时如何显示附件的内容。实际上它也适用于Gmail和iOS上的其他电子邮件应用程序,因为它是知道如何显示.rtfd.zip的UIWebView。以下是关于它的技术说明:https://developer.apple.com/library/ios/qa/qa1630/_index.html#//apple_ref/doc/uid/DTS40008749

所以底线是 - 它可以完成,但RTFD文档将是电子邮件的附件而不是电子邮件内容本身。如果您想将其作为电子邮件内容,您应该考虑将图像嵌入到HTML中并将邮件作为HTML发送。