-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender-bitmaps.rb
More file actions
executable file
·50 lines (47 loc) · 1.78 KB
/
render-bitmaps.rb
File metadata and controls
executable file
·50 lines (47 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env ruby
# FIXME: copied from gnome / tango
require "rexml/document"
require "fileutils"
include REXML
INKSCAPE = '/usr/bin/inkscape'
SRC = "./src"
def renderit(file,explicit)
svg = Document.new(File.new("#{SRC}/#{file}", 'r'))
#puts "DEBUG: #{file}"
svg.root.each_element("//g[contains(@inkscape:label,'baseplate')]") do |icon|
if icon.attributes['inkscape:groupmode']=='layer' #only look inside layers, there may be pasted groups
context = icon.elements["text[@inkscape:label='context']/tspan"].nil? ? 'blank' : icon.elements["text[@inkscape:label='context']/tspan"].text
icon_name = icon.elements["text[@inkscape:label='icon-name']/tspan"].nil? ? 'blank' : icon.elements["text[@inkscape:label='icon-name']/tspan"].text
puts "#{file}:#{icon.attributes['inkscape:label']} #{context}/#{icon_name}"
icon.each_element("rect") do |box|
dir = "hicolor/#{box.attributes['width']}x#{box.attributes['height']}/#{context}"
out = "#{dir}/#{icon_name.gsub(/$/,'.png')}"
cmd = "#{INKSCAPE} -i #{box.attributes['id']} -e #{out} #{SRC}/#{file} > /dev/null 2>&1"
File.makedirs(dir) unless File.exists?(dir)
if (!explicit && File.exists?(out))
print "-" #skip if PNG exists
else
system(cmd)
print "."
end
end
puts ''
end
end
end
if (ARGV[0].nil?) #render all SVGs
system("mkdir hicolor/") unless File.exists?('hicolor')
puts "Rendering from SVGs in #{SRC}"
Dir.foreach(SRC) do |file|
renderit(file, false) if file.match(/svg$/)
end
puts "\nrendered all SVGs"
else #only render the SVG passed
file = "#{ARGV[0]}.svg"
if (File.exists?("#{SRC}/#{file}"))
renderit(file, true)
puts "\nrendered #{file}"
else
puts "[E] No such file (#{file})"
end
end