source: git/trunk/src/png2winicon @ 7bb8184

Last change on this file since 7bb8184 was 7bb8184, checked in by Olly Betts <olly@…>, 13 years ago

Retagging 1.2.0

git-svn-id: file:///home/survex-svn/survex/tags/1.2.0@3664 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100755
File size: 247 bytes
Line 
1#!/bin/sh
2t=/tmp/png2winicon.$$
3pngtopnm "$1" > $t.pnm
4#pngtopnm -alpha "$1" | pgmtopbm -threshold | convert -negate pbm:- pbm:$t.pbm
5pngtopnm -alpha "$1" | pgmtopbm -threshold > $t.pbm
6ppmtowinicon -andppms $t.pnm $t.pbm > "$2"
7rm $t.pnm $t.pbm
Note: See TracBrowser for help on using the repository browser.