Plan 9 from Bell Labs’s /usr/web/sources/contrib/pac/rc/bin/j2k/topng

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#!/bin/rc
# make *.png from *.j2k
# Wed Mar 30 05:31:29 MET 2005 Peter A. Cejchan <cej@gli.cas.cz | pac7@post.cz>

rfork e
mkdir $1
for (name in *.j2k) {
	outname = `{echo $name | sed 's/\.j2k/\.png/g'}
	j2kto9 $name | topng > $1/$outname
}

#-eof-

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.