文末提供程序和源码下载
HiPixel是一个开源程序基于SwiftUI构建的macOS原生应用程序,用于AI驱动的图像超分辨率,并利用Upscayl的强大AI模型。
虽然 Upscayl 已经提供了出色的 macOS 应用程序,但 HiPixel 的开发是有特定目标的:
HiPixel 旨在通过提供一种专注于工作流程效率和原生 macOS 集成的替代方法来补充 Upscayl,同时建立在 Upscayl 出色的 AI 升级基础之上。
HiPixel 支持通过外部应用程序或脚本处理图像的 URL Scheme。URL 格式为:
hipixel://?path=/path/to/image1&path=/path/to/image2
# Process a single image
open "hipixel://?path=/Users/username/Pictures/image.jpg"
# Process multiple images
open "hipixel://?path=/Users/username/Pictures/image1.jpg&path=/Users/username/Pictures/image2.jpg"
tell application "Finder"
set selectedFiles to selection as alias list
set urlString to "hipixel://"
repeat with theFile in selectedFiles
set urlString to urlString & "?path=" & POSIX path of theFile
end repeat
open location urlString
end tell
从文末下载程序
将 HiPixel.app 移动到 Applications 文件夹
启动 HiPixel
注意:HiPixel 需要 macOS 13.0 (Ventura) 或更高版本。
克隆存储库
git clone https://github.com/okooo5km/hipixel
cd hipixel
在 Xcode 中打开 HiPixel.xcodeproj
生成并运行项目
夸克网盘分享
本文信息来源于GitHub作者地址:https://github.com/okooo5km/HiPixel/releases