我有一个NSImage,用PDF数据初始化,创建如下:
NSData* data = [view dataWithPDFInsideRect:view.bounds];
slideImage = [[NSImage alloc] initWithData:data];
slideImage
现在是view
的大小。
当我尝试在NSImageView
中渲染图像时,即使您清除缓存或更改图像大小,它也只会在图像视图完全是图像的原始大小时绘制清晰度。我尝试将cacheMode
设置为NSImageCacheNever
,这也无效。图像中唯一的图像是PDF格式,当我将其渲染为PDF文件时,它会显示它是矢量。
作为一种解决方法,我创建了一个不同大小的NSBitmapImageRep
,在原始图片上调用drawInRect
,并将位图表示放在新的NSImage
中并渲染它, ,但感觉它不是最佳的:
- (NSBitmapImageRep*)drawToBitmapOfWidth:(NSInteger)width
andHeight:(NSInteger)height
withScale:(CGFloat)scale
{
NSBitmapImageRep *bmpImageRep = [[NSBitmapImageRep alloc]
initWithBitmapDataPlanes:NULL
pixelsWide:width * scale
pixelsHigh:height * scale
bitsPerSample:8
samplesPerPixel:4
hasAlpha:YES
isPlanar:NO
colorSpaceName:NSCalibratedRGBColorSpace
bitmapFormat:NSAlphaFirstBitmapFormat
bytesPerRow:0
bitsPerPixel:0
];
bmpImageRep = [bmpImageRep bitmapImageRepByRetaggingWithColorSpace:
[NSColorSpace sRGBColorSpace]];
[bmpImageRep setSize:NSMakeSize(width, height)];
NSGraphicsContext *bitmapContext = [NSGraphicsContext graphicsContextWithBitmapImageRep:bmpImageRep];
[NSGraphicsContext saveGraphicsState];
[NSGraphicsContext setCurrentContext:bitmapContext];
[self drawInRect:NSMakeRect(0, 0, width, height) fromRect:NSZeroRect operation:NSCompositeCopy fraction:1];
[NSGraphicsContext restoreGraphicsState];
return bmpImageRep;
}
- (NSImage*)rasterizedImageForSize:(NSSize)size
{
NSImage* newImage = [[NSImage alloc] initWithSize:size];
NSBitmapImageRep* rep = [self drawToBitmapOfWidth:size.width andHeight:size.height withScale:1];
[newImage addRepresentation:rep];
return newImage;
}
如何在不诉诸我的黑客的情况下让PDF以任何尺寸渲染得很好?
答案 0 :(得分:1)
NSImage
的要点是你用它想要的大小(以磅为单位)创建它。支持表示可以是基于矢量的(例如PDF),NSImage
是独立于分辨率的(即它支持每点不同的像素),但NSImage
仍然具有固定的大小(以点为单位)。 / p>
NSImage
的一点是它将/可以添加缓存表示以加速后续绘图。
如果您需要将PDF绘制为多种尺寸,并且想要使用NSImage,则最好为给定的目标尺寸创建NSImage。如果你愿意,你可以保持NSPDFImageRef
- 我认为它不会为你节省太多。
答案 1 :(得分:0)
我们尝试了以下方法:
NSPDFImageRep* rep = self.representations.lastObject;
return [NSImage imageWithSize:size flipped:NO drawingHandler:^BOOL (NSRect dstRect)
{
[[NSGraphicsContext currentContext] setImageInterpolation:NSImageInterpolationHigh];
[rep drawInRect:dstRect fromRect:NSZeroRect operation:NSCompositeCopy fraction:1 respectFlipped:YES hints:@{
NSImageHintInterpolation: @(NSImageInterpolationHigh)
}];
return YES;
}];
这会在放大时为您提供良好的效果,但会使图像模糊 按比例缩小。