gpt4 book ai didi

swift - 缩放图像 OSX Swift

转载 作者:行者123 更新时间:2023-11-30 12:32:09 27 4
gpt4 key购买 nike

我目前正在尝试使用 swift 缩放图像。这不应该是一项艰巨的任务,因为我在 30 分钟内用 C# 实现了一个扩展解决方案 - 然而,我已经被困了 2 天了。

我尝试过通过谷歌搜索/爬行堆栈帖子,但无济于事。我见过人们使用的两个主要解决方案是:

A function written in Swift to resize an NSImage proportionately

resizeNSImage.swift

An Obj C Implementation of the above link

所以我更愿意使用最高效/最不占用CPU资源的解决方案,根据我的研究,这是选项2。由于选项2使用NSImage.lockfocus()NSImage。 unlockFocus,图像将在非视网膜 Mac 上精细缩放,但在视网膜 Mac 上缩放尺寸加倍。我知道这是由于 Retina mac 的像素密度造成的,这是可以预料的,但我需要一个忽略 HiDPI 规范并仅执行正常缩放操作的缩放解决方案。

这让我对选项 1 进行了更多研究。它看起来像是一个健全的函数,但它实际上不会缩放输入图像,然后在我保存返回的图像时将文件大小加倍(可能是由于像素密度)。我发现另一个堆栈帖子与其他人有与我完全相同的问题,使用完全相同的实现( found here )。在两个建议的答案中,第一个不起作用,第二个是我一直在尝试使用的另一个实现。

如果人们可以发布 Swift 化的答案,而不是 Obj C,我将非常感激!

编辑:这是我的第一个解决方案的实现副本 - 我将其分为 2 个函数:

func getSizeProportions(oWidth: CGFloat, oHeight: CGFloat) -> NSSize {

var ratio:Float = 0.0
let imageWidth = Float(oWidth)
let imageHeight = Float(oHeight)

var maxWidth = Float(0)
var maxHeight = Float(600)

if ( maxWidth == 0 ) {
maxWidth = imageWidth
}

if(maxHeight == 0) {
maxHeight = imageHeight
}

// Get ratio (landscape or portrait)
if (imageWidth > imageHeight) {
// Landscape
ratio = maxWidth / imageWidth;
}
else {
// Portrait
ratio = maxHeight / imageHeight;
}

// Calculate new size based on the ratio
let newWidth = imageWidth * ratio
let newHeight = imageHeight * ratio

return NSMakeSize(CGFloat(newWidth), CGFloat(newHeight))
}


func resizeImage(image:NSImage) -> NSImage {
print("original: ", image.size.width, image.size.height )

// Cast the NSImage to a CGImage
var imageRect:CGRect = CGRect(x: 0, y: 0, width: image.size.width, height: image.size.height)
let imageRef = image.cgImage(forProposedRect: &imageRect, context: nil, hints: nil)

// Create a new NSSize object with the newly calculated size
let newSize = NSSize(width: CGFloat(450), height: CGFloat(600))
//let newSize = getSizeProportions(oWidth: CGFloat(image.size.width), oHeight: CGFloat(image.size.height))

// Create NSImage from the CGImage using the new size
let imageWithNewSize = NSImage(cgImage: imageRef!, size: newSize)

print("scaled: ", imageWithNewSize.size.width, imageWithNewSize.size.height )

return NSImage(data: imageWithNewSize.tiffRepresentation!)!
}

编辑2:

正如 Zneak 所指出的:我需要将返回的图像保存到磁盘 - 使用这两种实现,我的保存函数成功地将文件写入磁盘。虽然我不认为我的保存功能可能会影响我当前的调整大小实现,但我还是附加了它以防万一:

func saveAction(image: NSImage, url: URL) {

if let tiffdata = image.tiffRepresentation,
let bitmaprep = NSBitmapImageRep(data: tiffdata) {

let props = [NSImageCompressionFactor: Appearance.imageCompressionFactor]
if let bitmapData = NSBitmapImageRep.representationOfImageReps(in: [bitmaprep], using: .JPEG, properties: props) {

let path: NSString = "~/Desktop/out.jpg"
let resolvedPath = path.expandingTildeInPath

try! bitmapData.write(to: URL(fileURLWithPath: resolvedPath), options: [])

print("Your image has been saved to \(resolvedPath)")
}
}

最佳答案

对于遇到这个问题的其他人 - 我最终花了无数的时间试图找到一种方法来做到这一点,最终只得到了屏幕的缩放因子(1用于普通Mac,2用于视网膜)......代码如下所示:

func getScaleFactor() -> CGFloat {
return NSScreen.main()!.backingScaleFactor
}

一旦你有了比例因子,你要么正常缩放,要么将视网膜尺寸缩小一半:

if (scaleFactor == 2) {
//halve size proportions for saving on Retina Macs
return NSMakeSize(CGFloat(oWidth*ratio)/2, CGFloat(oHeight*ratio)/2)
} else {
return NSMakeSize(CGFloat(oWidth*ratio), CGFloat(oHeight*ratio))
}

关于swift - 缩放图像 OSX Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43383331/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com