Commit 465e6539 authored by Joel Holdsworth's avatar Joel Holdsworth Committed by Alexandre Julliard

tools: Modified the ICO render script to also render BMPs.

parent 0c0e352f
...@@ -63,7 +63,7 @@ IDLFLAGS = $(INCLUDES) $(DEFS) $(EXTRAIDLFLAGS) ...@@ -63,7 +63,7 @@ IDLFLAGS = $(INCLUDES) $(DEFS) $(EXTRAIDLFLAGS)
TARGETFLAGS = @TARGETFLAGS@ TARGETFLAGS = @TARGETFLAGS@
MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755 MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755
WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi/winapi_check WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi/winapi_check
BUILDICON = $(TOPSRCDIR)/tools/buildicon BUILDIMAGE = $(TOPSRCDIR)/tools/buildimage
C2MAN = $(TOPSRCDIR)/tools/c2man.pl C2MAN = $(TOPSRCDIR)/tools/c2man.pl
RUNTEST = $(TOPSRCDIR)/tools/runtest RUNTEST = $(TOPSRCDIR)/tools/runtest
WINEBUILD = $(TOOLSDIR)/tools/winebuild/winebuild$(TOOLSEXT) WINEBUILD = $(TOOLSDIR)/tools/winebuild/winebuild$(TOOLSEXT)
...@@ -190,12 +190,10 @@ filter: dummy ...@@ -190,12 +190,10 @@ filter: dummy
LC_ALL=C sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g' $< >$@ || ($(RM) $@ && false) LC_ALL=C sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g' $< >$@ || ($(RM) $@ && false)
.svg.ico: .svg.ico:
CONVERT="$(CONVERT)" ICOTOOL="$(ICOTOOL)" RSVG="$(RSVG)" $(BUILDICON) $< $@ CONVERT="$(CONVERT)" ICOTOOL="$(ICOTOOL)" RSVG="$(RSVG)" $(BUILDIMAGE) $< $@
.svg.bmp: .svg.bmp:
$(RSVG) $< $<.png CONVERT="$(CONVERT)" ICOTOOL="$(ICOTOOL)" RSVG="$(RSVG)" $(BUILDIMAGE) $< $@
$(CONVERT) $<.png -alpha off $@
$(RM) $<.png
# Rules for IDL files # Rules for IDL files
......
#! /usr/bin/perl -w #! /usr/bin/perl -w
# #
# Render SVG files containing multiple images # Render SVG files containing one or more images into an ICO or BMP.
# #
# Copyright (C) 2010 Joel Holdsworth # Copyright (C) 2010 Joel Holdsworth
# #
...@@ -22,17 +22,21 @@ use strict; ...@@ -22,17 +22,21 @@ use strict;
use warnings; use warnings;
use XML::Parser; use XML::Parser;
use MIME::Base64; use MIME::Base64;
use File::Copy;
# Parse the parameters # Parse the parameters
my $svgFileName = $ARGV[0]; my $svgFileName = $ARGV[0];
my $icoFileName = $ARGV[1]; my $outFileName = $ARGV[1];
die "Cannot open SVG file" unless defined($svgFileName); die "Cannot open SVG file" unless defined($svgFileName);
die "Cannot open ICO file" unless defined($icoFileName); die "Cannot open output file" unless defined($outFileName);
my $renderedSVGFileName = "$svgFileName.ico"; $outFileName =~ m/(.*)\.(.*)/;
$icoFileName =~ m/(.*)\.ico/; my $outName = $1;
my $icoName = $1; my $ext = lc($2);
die "Only BMP and ICO outputs are supported" unless $ext eq "bmp" or $ext eq "ico";
my $renderedSVGFileName = "$svgFileName.png";
my @pngFiles; my @pngFiles;
# Get the programs from the environment variables # Get the programs from the environment variables
...@@ -40,6 +44,7 @@ my $convert = $ENV{"CONVERT"} || "convert"; ...@@ -40,6 +44,7 @@ my $convert = $ENV{"CONVERT"} || "convert";
my $rsvg = $ENV{"RSVG"} || "rsvg"; my $rsvg = $ENV{"RSVG"} || "rsvg";
my $icotool = $ENV{"ICOTOOL"} || "icotool"; my $icotool = $ENV{"ICOTOOL"} || "icotool";
# Be ready to abort
sub cleanup() sub cleanup()
{ {
unlink $renderedSVGFileName; unlink $renderedSVGFileName;
...@@ -62,19 +67,35 @@ sub svg_element_start ...@@ -62,19 +67,35 @@ sub svg_element_start
{ {
my($expat, $element, %attr) = @_; my($expat, $element, %attr) = @_;
# Parse the id for icon format # Parse the id for icon/bitmap render directives
my $id = $attr{'id'}; my $id = $attr{'id'};
return unless defined($id); return unless defined($id);
my $size = 0;
my $depth = 0;
if($ext eq "ico") {
return unless $id =~ /icon:(\d*)-(\d*)/; return unless $id =~ /icon:(\d*)-(\d*)/;
my $size = $1; $size = $1;
my $depth = $2; $depth = $2;
} elsif($ext eq "bmp") {
return unless $id =~ /bitmap:(\d*)-(\d*)/;
$size = $1;
$depth = $2;
}
return unless defined($size) and defined($depth); return unless defined($size) and defined($depth);
warn "Unexpected icon depth" unless warn "Unexpected icon depth" unless
$depth == 4 or $depth == 8 or $depth == 32; $depth == 4 or $depth == 8 or $depth == 24 or $depth == 32;
my $pngFileName = "$icoName-$size-$depth.png"; my $pngFileName = "$outName-$size-$depth.png";
if($element eq "rect") { if($element eq "svg") {
# The whole file is tagged
copy($renderedSVGFileName, $pngFileName) or die "File could not be copied";
} elsif($element eq "rect") {
# Extract SVG vector images # Extract SVG vector images
my $x = $attr{'x'}; my $x = $attr{'x'};
...@@ -116,12 +137,34 @@ my $parser = new XML::Parser( ...@@ -116,12 +137,34 @@ my $parser = new XML::Parser(
Handlers => {Start => \&svg_element_start}); Handlers => {Start => \&svg_element_start});
$parser->parsefile("$svgFileName"); $parser->parsefile("$svgFileName");
# Die if no render directives were found # If no render directives were found, take the full image as-is
die "No render directives found in icon" unless(@pngFiles); unless(@pngFiles) {
my $pngFileName = "bmp$renderedSVGFileName";
copy($renderedSVGFileName, $pngFileName) or die "File could not be copied";
push(@pngFiles, $pngFileName);
}
# Combine them into an ICO file # Combine the renderings into the output file
shell $icotool, "-c", "-o", $icoFileName, @pngFiles; if($ext eq "ico") {
# Place images into the ICO
shell $icotool, "-c", "-o", $outFileName, @pngFiles;
} elsif($ext eq "bmp") {
# Only the first image becomes the final BMP
my $pngFile = $pngFiles[0];
$pngFile =~ /.*-\d*-(\d*)\.png/;
my $depth = $1;
# Convert it into a bmp
if($depth == 24) {
shell $convert, "png:$pngFile", "+matte", $outFileName;
} else {
shell $convert, "png:$pngFile", $outFileName;
}
}
# Delete the intermediate images # Delete the intermediate images
unlink $renderedSVGFileName; cleanup();
unlink $_ foreach(@pngFiles);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment