使用图像时Retina显示问题

时间:2013-03-19 13:20:46

标签: objective-c macos retina-display nsimage

我在视网膜显示器上工作时遇到了问题。 NSImage大小是正确的,但如果我从它创建NSBitmapImageRep并将其写入文件我得到的图像女巫的大小是原始图像的两倍大。当我在非视网膜显示器上使用它时没有这样的问题。

  • 我从文件(1920x1080)
  • 创建NSImage
  • 我在
  • 上做了一些图纸
  • 我使用图纸
  • 从图像创建NSBitmapImageRep
  • 我把它写到档案
  • 我得到尺寸为3840x2160的图片

可能导致什么?


NSImage *originalImage = [[NSImage alloc] initWithContentsOfURL:fileUrl];

NSImage *editedImage = [[NSImage alloc] initWithSize:originalImage.size];

[editedImage lockFocus];
//I draw here NSBezierPaths
[editedImage unlockFocus];

NSBitmapImageRep *savingRep = [NSBitmapImageRep imageRepsWithData:[editedImage TIFFRepresentation]];
NSData *savingData = [savingRep representationUsingType: NSPNGFileType properties: nil];
[savingData writeToFile:desiredFileLocationAndName atomically:no];

如果我打开图像并保存而不进行编辑,我会得到正确的尺寸图像

NSImage *imageFromFile = [[NSImage alloc] initWithContentsOfURL:fileURL];
NSBitmapImageRep *newRepresentation = [[NSBitmapImageRep imageRepsWithData:[imageFromFile TIFFRepresentation]];
NSData *savingData = [newRepresentation representationUsingType: NSPNGFileType properties: nil];
[savingData writeToFile:desiredFileLocationAndName atomically:no];

1 个答案:

答案 0 :(得分:0)

以像素为单位测量图像的位图表示。 的两倍大小。 NSImage为您提供了一个点大小,在视网膜设备上每点测量2个像素。它给你的东西没有错。