如何在NSView上绘制EPS数据

时间:2013-06-10 08:28:14

标签: macos cocoa nsview eps

我正在努力解决在NSView上绘制eps文件的问题。 当我第一次从文件加载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:...]

我在这里使用NSKeyedArchiverNSKeyedUnarchiver来模拟encodeWithCoder:initWithCoder:。因此,请关注NSImage带有NSEPSImageRep表示的事实,它不包含预览(来自资源分支?)并且纯粹作为eps命令加载,不会在NSView上绘制正确。

感谢任何帮助。

1 个答案:

答案 0 :(得分: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];

你应该全力以赴。