代码拉取完成,页面将自动刷新
#!/usr/bin/ruby
# -*- coding: UTF-8 -*-
require 'fileutils'
require 'rubygems'
TARGET = "../images"
RESIZE = 600
if File.exist?('/Applications/Inkscape.app/Contents/Resources/bin/inkscape')
CMD_INKSCAPE='/Applications/Inkscape.app/Contents/Resources/bin/inkscape'
else
CMD_INKSCAPE='inkscape'
end
CMD_IMGMAGICK='convert'
desc "export images, default: rake convert[../images,600]"
task :convert, :target, :width do |t, args|
args.with_defaults(:target => TARGET, :width => RESIZE)
FileList["**/*.svg", "**/*.xcf", "**/*.jpg", "**/*.png", "**/*.gif"].each do |source|
[".svg", ".png", ".gif", ".xcf"].each do |prefer|
if File.exists?(source.sub(/\.[^.]+$/, prefer))
source = source.sub(/\.[^.]+$/, prefer)
break
end
end
if source =~ /\.svg/
output = args[:target] + '/' + source.sub(/\.[^.]+$/, '.png')
command = "#{CMD_INKSCAPE} -w #{args[:width]} -f #{source} -e #{output}"
elsif source =~ /\.xcf/
output = args[:target] + '/' + source.sub(/\.[^.]+$/, '.png')
command = "#{CMD_IMGMAGICK} -auto-level -flatten -resize '#{args[:width]}>' #{source} #{output}"
elsif source =~ /\.(jpg|png|gif)/
output = args[:target] + '/' + source
command = "#{CMD_IMGMAGICK} -auto-level -resize '#{args[:width]}>' #{source} #{output}"
end
unless uptodate?(output, [source])
Dir.mkdir(File.dirname(output)) unless File.exists?(File.dirname(output))
sh command
File.utime(0, Time.now, output)
end
end
end
task :default do
system "rake -T"
end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。