2

我正在尝试裁剪包含 PDF 的 NSImage。打印时,我使用 NSImage 的 drawInRect 让它只绘制我需要的东西 - 这很好用。

但是,现在我正在尝试创建一个仅包含裁剪区域的新 NSImage 。我玩了一会儿,然后在 CocoaBuilder 上找到了这段代码:

- (NSImage *) imageFromRect: (NSRect) rect
{
  NSAffineTransform * xform = [NSAffineTransform transform];

  // translate reference frame to map rectangle 'rect' into first quadrant
  [xform translateXBy: -rect.origin.x
                  yBy: -rect.origin.y];

  NSSize canvas_size = [xform transformSize: rect.size];

  NSImage * canvas = [[NSImage alloc] initWithSize: canvas_size];
  [canvas lockFocus];

  [xform concat];

  // Get NSImageRep of image
  NSImageRep * rep = [self bestRepresentationForDevice: nil];

  [rep drawAtPoint: NSZeroPoint];

  [canvas unlockFocus];
  return [canvas autorelease];
}

这可行,但返回的 NSImage 模糊,不再适合打印。有任何想法吗?

4

2 回答 2

5

lockFocus/unlockFocus对图像缓存执行光栅绘制。这就是它“模糊”的原因——它的分辨率低并且可能配准错误。你需要矢量图。

使用 PDF 套件。首先,将每个页面的裁剪框设置为您的矩形。然后,您应该能够从dataRepresentationPDFDocument 中创建裁剪的 NSImage。

于 2009-02-07T00:27:22.377 回答
2

这是执行 Peter Hosey 回答的代码。谢谢!

PDFDocument *thePDF = [[PDFDocument alloc] initWithData:pdfData];
PDFPage *thePage = [thePDF pageAtIndex:0];
NSRect pageCropRect = NSMakeRect(0, 100, 100, 100);

[thePage setBounds:pageCropRect forBox:kPDFDisplayBoxMediaBox];
NSImage *theCroppedImage = [[NSImage alloc] initWithData:[thePage dataRepresentation]];
于 2009-02-07T01:46:34.743 回答