# The LearningOnline Network # help_graphics_converter - converts help .png into .gif and .eps # # This file is part of the LearningOnline Network with CAPA (LON-CAPA). # # LON-CAPA is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # LON-CAPA is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with LON-CAPA; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # /home/httpd/html/adm/gpl.txt # # http://www.lon-capa.org/ # # YEAR=2002 # 7/4, Jeremy Bowers # ### use strict; my $dirprefix = "/home/httpd/html/adm/help/"; # Check that the png directory exists if (not (-d $dirprefix . "png/")) { die "Can't convert help graphics because the png directory is not ". "installed."; } mkdir $dirprefix . "gif/"; mkdir $dirprefix . "eps/"; foreach my $file (glob($dirprefix . "png/*.png")) { my $filename = substr($file, rindex($file, "/") + 1); my $gifdest = $dirprefix . "gif/" . substr($filename, 0, -4) . ".gif"; my $epsdest = $dirprefix . "eps/" . substr($filename, 0, -4) . ".eps"; print "Converting $filename... gif"; system ("convert $file $gifdest\n") if (not (-s $gifdest)); print " eps"; system ("convert $file $epsdest\n") if (not (-s $epsdest)); print " done.\n"; }