0

我正在努力解决在NSView. 当我第一次从文件中加载 eps 文件并绘制它时drawInRect:,图像会正确显示。但是,当我从存档文件加载图像时,不会绘制图像。

我准备了一个肮脏的小例子,你可以复制/粘贴并试用。创建一个新的 Cocoa App 项目并将其添加到委托方法中。

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
  // Just a sample eps file
  NSURL *url = [NSURL URLWithString: @"http://embedded.eecs.berkeley.edu/concurrency/latex/figure.eps"];
  NSImage *epsImage = [[[NSImage alloc] initWithContentsOfURL: url] autorelease];

  // Encode data
  NSMutableData *mutableData = [[[NSMutableData alloc] init] autorelease];
  NSKeyedArchiver *coder = [[[NSKeyedArchiver alloc] initForWritingWithMutableData: mutableData] autorelease];
  [coder encodeObject: epsImage forKey: @"image"];
  [coder finishEncoding];
  NSString *dataFile = [@"~/Desktop/image.data" stringByExpandingTildeInPath];
  [mutableData writeToFile: dataFile atomically: YES];

  // Decode data
  NSData *data = [NSData dataWithContentsOfFile: dataFile];
  NSKeyedUnarchiver *decoder = [[NSKeyedUnarchiver alloc] initForReadingWithData: data];
  NSImage *loadedImage = [decoder decodeObjectForKey: @"image"];

  // Draw image
  NSRect rect;
  rect.origin = NSZeroPoint;
  rect.size = loadedImage.size;

  NSView *view = [[NSApp mainWindow] contentView];
  [view lockFocus];
  [loadedImage drawInRect: rect fromRect: rect operation: NSCompositeSourceOver fraction: 1.0];
  [view unlockFocus];
}

为了证明第一个加载的图像绘制正确,只需将行更改[loadedImage drawInRect:...][epsImage drawInRect:...].

我在这里使用NSKeyedArchiverandNSKeyedUnarchiver来模拟encodeWithCoder:and initWithCoder:。因此,请关注这样一个事实NSImageNSEPSImageRep即不包含预览(来自资源分支?)并且纯粹作为 eps 命令加载的表示未NSView正确绘制在 a 上。

任何帮助表示赞赏。

4

1 回答 1

2

由于缓存的工作方式NSImage,我经常发现NSImageRep如果我知道类型是什么,实际获取它会更有效。

在我们的代码中,我们发现保存图像最可靠的方法是以原始格式保存图像,但这需要在其他地方以原始格式保存数据,或者从NSImageRep. 不幸的是,没有通用的-(NSData*)data方法NSImageRep,所以我们最终专门检查了各种类型的,NSImageRep并根据我们知道它们是什么来保存它们。

幸运的是,加载很简单,NSImage::initWithData:可以根据数据确定类型。

这是我们执行此操作的长期代码。基本上,它更喜欢 PDF 而不是 EPS,然后它将任何它不理解的东西制作成 TIFF。

+ (NSData*) dataWithImage:(NSImage*)image kindString:( NSString**)kindStringPtr
{
    if (!image)
        return nil;

    NSData *pdfData=nil, *newData=nil, *epsData=nil, *imageData=nil;;
    NSString *kindString=nil;
    NSArray *reps = [image representations];
    for (NSImageRep *rep in reps) {
        if ([rep isKindOfClass: [NSPDFImageRep class]]) {
            // we have a PDF, so save that
            pdfData = [(NSPDFImageRep*)rep PDFRepresentation];
            PDFDocument *doc = [[PDFDocument alloc] initWithData:pdfData];
            newData = [doc dataRepresentation];
            if (newData && ([newData length]<[pdfData length])) {
                pdfData = newData;
            }
            break;
        }
        if ([rep isKindOfClass: [NSEPSImageRep class]]) {
            epsData = [(NSEPSImageRep*)rep EPSRepresentation];
            break;
        }
    }

    if (pdfData) {
        imageData=pdfData;
        kindString= @"pdfImage";
    } else if (epsData) {
        imageData=epsData;
        kindString=@"epsImage";
    } else {
        // make a big copy
        NSBitmapImageRep *rep0 = [reps objectAtIndex:0];
        if ([rep0 isKindOfClass: [NSBitmapImageRep class]]) {
            [image setSize: NSMakeSize( [rep0 pixelsWide], [rep0 pixelsHigh])];
        }

        imageData = [image TIFFRepresentation];
        kindString=@"tiffImage";
    }

    if (kindStringPtr)
        *kindStringPtr=kindString;
    return imageData;
}

一旦我们有了NSData*,它就可以保存在密钥存档中,写入磁盘或其他任何东西。

在回来的路上,加载NSData*然后

NSImage *image = [[NSImage alloc] initWithData: savedData];

你应该准备好了。

于 2013-06-10T11:58:42.520 回答