pixmapgen.pl
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. #!/usr/bin/perl
  2. use strict;
  3. #
  4. # a short perl script to convert (almost) any pictures into WBMP pictures
  5. #
  6. # Kalle Marjola for WapIT Ltd. 1999
  7. #
  8. # USAGE: ./pixmapgen.pl SOURCE >TARGET
  9. #
  10. #
  11. # note: change following strings if needed to
  12. #
  13. my $temp_target = "/tmp/pmgen_tmp.mono";   # the program for mono->WBMP
  14. my $converter = "./test_wbmp";             # temporary file
  15. my $source = $ARGV[0];
  16. my $retval = `convert -verbose -monochrome $source $temp_target`;
  17. my ($width, $height) = ($retval =~ /$temp_target (d+)x(d+)/s);
  18. print `$converter $temp_target $width $height`;