source: git/lib/icons/png2winicon @ d4d6909

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since d4d6909 was 168df28, checked in by Olly Betts <olly@…>, 19 years ago

Backport a whole pile of fixes and minor tweaks from 1.1.7.

git-svn-id: file:///home/survex-svn/survex/trunk@3114 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100755
File size: 303 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
6pnmcomp -alpha=$t.pbm $t.pnm $t.pbm $t.2.pnm
7ppmtowinicon -andppms $t.2.pnm $t.pbm > "$2"
8rm $t.pnm $t.pbm $t.2.pnm
Note: See TracBrowser for help on using the repository browser.