gif2xface.pl 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. #!/usr/bin/perl
  2. #
  3. # gif2xface -- converts a 48x48 GIF file to an X-Face mail header
  4. #
  5. # Author: Ricardo Mones Lastra <mones@aic.uniovi.es>
  6. #
  7. # URL: http://www.aic.uniovi.es/mones
  8. #
  9. # This is a hack over the original xbm2face script. The xbm files generated
  10. # by some graphic tools (notably The Gimp version 1.2.1) aren't suitable to
  11. # feed the compface program. Starting with a GIF and using some filters does
  12. # the trick. A little help screen also added.
  13. # This requieres giftopnm and pbmtoxbm (both in libgr-progs package).
  14. #
  15. # The original xbm2face author's comment follows:
  16. #
  17. # xbm2xface -- converts a 48x48 xbm file to an X-Face mail header
  18. #
  19. # Author: Jonathan Stigelman <Stig@hackvan.com>
  20. #
  21. # URL: http://hackvan.com/pub/stig/src/linux/
  22. # FTP: hackvan.com:/pub/stig/src/linux/
  23. #
  24. # This is a Perl script that I wrote to convert 48x48 xbm (X bitmap) files
  25. # into X-Face: headers suitable for inclusion in RFC822 internet
  26. # electronic mail. A 48x48 bitmap is awfully small, but X-Faces are still
  27. # good enough for other people to visually establish your identity in
  28. # email without having to carefully read your name.
  29. #
  30. # Basically, it gets you noticed...either as the person with the cool
  31. # X-Face or as that jerk with modem noise in all of his email messages.
  32. #
  33. # People will start looking over your shoulder and say "Hey Cool! How'd
  34. # you do that?" When they do, you just send 'em to my URL for this
  35. # utility and tell 'em to upgrade to a real mail reader: XEmacs and VM.
  36. #
  37. # It also requires the 'compface' utility.
  38. #
  39. sub check_for_help {
  40. local($param) = @_;
  41. # is a filter, no args must be present
  42. if (defined($param))
  43. {
  44. print "\n", 'gif2xface -- A filter for converting an 48x48 gif into a xface string', "\n\n" ;
  45. print 'Usage: gif2xface < input.gif > output.xface', "\n\n";
  46. exit;
  47. }
  48. }
  49. sub reverse_byte {
  50. local($byte) = @_;
  51. local($n, $b);
  52. for ( $b= $n= 0; $b<8; ++$b) {
  53. $n |= (($byte & 1) << (7-$b));
  54. $byte >>= 1;
  55. }
  56. return($n);
  57. }
  58. &check_for_help($ARGV[0]);
  59. # printf "0x%02x\n", &reverse_byte(0xF0);
  60. $ra = rand;
  61. $tf = "/tmp/gif2xface.$ra";
  62. open(GP,"|giftopnm|pbmtoxbm>$tf");
  63. while (<>) {
  64. print GP $_;
  65. }
  66. close(GP);
  67. open(GP,"<$tf");
  68. <GP>;
  69. m/^#define \w+_width (\d+)/ && ($width=$1);
  70. <GP>;
  71. m/^#define \w+_height (\d+)/ && ($height=$1);
  72. <GP>;
  73. m/^static.* = \{/ && (( $width == 48 && $height == 48 )
  74. || die $0, ": sorry, xfaces must be 48x48 pixels" );
  75. $| = 1; print "X-Face:";
  76. open(CF,"|compface");
  77. while (<GP>) {
  78. $st="";
  79. while (s/(0x..)(,|\};)\s*//) {
  80. $st .= sprintf("0x%02x, ", &reverse_byte(eval($1)));
  81. }
  82. $_=$st;
  83. s/(0x..), 0x(..)/\1\2/g;
  84. s/\s*(0x...., 0x...., 0x....)(,|\};)\s/\1,\n/g;
  85. print CF $_;
  86. }
  87. close (CF);
  88. close (GP);
  89. unlink $tf;