1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-11-19 16:01:31 +00:00
Files
amiga-stuff/utils/jpg2ham6
Wei-ju Wu b4ed097fad startup and file requester change
- hardware startup: added copper macros
 - file requester: add blocking requester for parent window
2016-02-05 20:52:36 -08:00

11 lines
207 B
Bash
Executable File

#!/bin/bash
# jpg2ham6 - a tool to convert jpg images to HAM6 IFF/ILBM
# requires Netpbm
if [ "$#" -ne 2 ]; then
echo "Usage: $0 <jpg-file> <iff-file>"
else
jpegtopnm $1 | ppmtoilbm -ham6 -ecs > $2
fi