0

我想拍摄 iPad 屏幕上的图像并将其导出为 JPG、PNG 或 PDF 文件。

简单来说,用户在屏幕上创建了一些东西,例如,他单击“导出为 PNG”,然后创建了一个 PNG 文件。

我该怎么做呢?

4

2 回答 2

1

如果它是您正在谈论的 UIImage - 它确实具有用于将其内容写入文件并将图像作为 png 或 jpeg 数据流获取的内置方法。有关详细信息,请参阅 UIImage 类参考。

AFAIK 没有用于导出为 PDF 的 bild-in 功能。您当然可以创建 PDF 并将图像绘制到其中。这是一个易于理解的教程,它确实包括绘制图像: http: //www.ioslearner.com/generate-pdf-programmatically-iphoneipad/

编辑以回应您的评论。响应太大,无法发表评论:

我曾经对 GL 层做过类似的事情。在你的情况下,它应该更容易。如何从视图层获取 UIImage 将在此处将 UIView 图层转换为 UIImage如何将 UIView 转换为 UIImage?. 将其存储在 UIImage 中后,请在此处查看其参考http://developer.apple.com/library/ios/#documentation/uikit/reference/UIImage_Class/Reference/Reference.html。它告诉您有可用的 UIKit 函数(不是我之前所说的方法)将 UIImages 转换为 JPEG 和 PNG:UIImagePNGRepresentation并且UIImageJPEGRepresentation记录在这里:http: //developer.apple.com/library/ios/#documentation/uikit/参考/UIKitFunctionReference/Reference/reference.html#//apple_ref/c/func/UIImagePNGRepresentation. 这些函数返回 NSData 对象。

NSData 记录在这里:https ://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSData_Class/Reference/Reference.html 它带有将数据写入文件的方法。writeToFile:atomically:例如。

这是一个例子。就我而言,我只需要一个唯一的文件名并决定采用时间戳。您可能希望在此处使用一些对用户更友好的文件名。

// Use current time stamp for some unique photo ID
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *pathToDocuments=[paths objectAtIndex:0];  // this returns the path to the App's document directory
NSString *photoID = [NSString stringWithFormat:@"%f", [[NSDate date] timeIntervalSince1970]];  // this is just a time stamp. This is what you are most likely to do different. 
NSString *fileName = [NSString stringWithFormat:@"%@/%@.jpg", pathToDocuments, photoID]; // now you have a fully qualified path to a file within that part of the file system that belongs to your app. It will be overwritten if it exists. 

// Actually save the image (JPEG)
NSData *imgData = UIImageJPEGRepresentation(theImage, 1); // convert to jpeg - 1.0 represents 100%
[imgData writeToFile:fileName atomically:YES]; // actually save the data.
于 2013-01-13T12:59:06.153 回答
1

我为 UIView 编写了这个类别,从不记得的来源获得了一些帮助:

@interface UIView (Rendering)

+ (UIImage *)renderImageFromLayer:(CALayer *)layer withRect:(CGRect)frame;
- (UIImage *)renderImageWithRect:(CGRect)frame;

@end

@implementation UIView (Rendering)

+ (UIImage *)renderImageFromLayer:(CALayer *)layer withRect:(CGRect)frame
{
    // Create a new context of the desired size to render the image
    UIGraphicsBeginImageContextWithOptions(frame.size, YES, 1.0);
    CGContextRef context = UIGraphicsGetCurrentContext();

    // Translate it, to the desired position
    CGContextTranslateCTM(context, -frame.origin.x, -frame.origin.y);

    // Render the view as image
    [layer renderInContext:context];

    // Fetch the image
    UIImage *renderedImage = UIGraphicsGetImageFromCurrentImageContext();

    // Cleanup
    UIGraphicsEndImageContext();

    return renderedImage;
}

- (UIImage *)renderImageWithRect:(CGRect)frame
{
    return [UIView renderImageFromLayer:self.layer withRect:frame];
}

@end
于 2013-01-13T13:18:30.620 回答