是否可以使用一组Ruby命令更改Mac文件夹的图标?我相信OSX要求.icon文件存在于修改过的文件夹中,也许有一种特定的方法可以将jpg或png转换为.icon标准?
- 编辑(工作解决方案。需要ImageMagick和OSXUtils) *注意,对于我的应用程序,我打算设置文件夹图标。完全有可能这也适用于文件。
def set_icon image, folder
# Convert to absolute paths and setup
image = File.expand_path image
folder = File.expand_path folder
dim = 512
thumb = folder + '/'+ 'thumb.png' # PNG supports transparency
icon = folder + '/'+ 'icon.icns'
# Convert original to thumbnail
system "convert '#{ image }' -quiet -thumbnail '#{dim}x#{dim}>' \
-background none -gravity center -extent #{dim}x#{dim} '#{ thumb }'"
# Set icon format. Causes 'libpng warning: Ignoring attempt to set cHRM RGB triangle with zero area'
system "sips -s format icns '#{ thumb }' --out '#{ icon }'"
# Set the icon
system "seticon -d '#{ icon }' '#{ folder }'"
# Cleanup
FileUtils.rm thumb
FileUtils.rm icon
end
答案 0 :(得分:1)
我用它们已经好几年了,但是.icon文件的格式由Apple的文档和Wikepedia记录。
如果我没记错的话,该名称会有一个尾随"\r"
以使其更难输入,但这很容易通过代码处理。
您应该可以使用普通的File.rename
方法将.icon文件移动到文件夹中,Finder应该做正确的事情。
看看你的代码,我会做一些不同的事情:
require 'fileutils'
def set_icon image, folder
# Convert to absolute paths and setup
image = File.expand_path image
folder = File.expand_path folder
temp = File.join(folder, 'temp2' + File.extname(image))
# Copy image
FileUtils.cp(image, temp)
# Take an image and make the image its own icon
system "sips -Z 512 -i #{ temp }"
# Extract the icon to its own resource file
system "DeRez -only icns #{ temp } > tmpicns.rsrc"
# Append a resource to the folder you want to icon-ize
system "Rez tmpicns.rsrc -o $'#{ folder }/Icon\r'"
# Use the resource to set the icon.
system "SetFile -a C #{ folder }"
end
不是依靠sprintf
或%
(“格式”)来构建字符串,而是使用简单插值。当您需要强制列宽并将值强制转换为不同的表示时,sprintf
字符串很棒,但是当您插入未格式化的单个值时,它们会过度。
sips
有这个选项,看起来很有希望,但在man page中没有很好地记录:
-i
--addIcon
Add a Finder icon to image file.
另外,Stack Overflow的兄弟网站“Ask Different”有“Why setting image as its own icon with sips result a blurred icon? Are there any alternatives?”,“How do I set an icon for a directory via the CLI?和”Changing a file or folder icon using the Terminal“,看起来很有用。