mirror of
https://github.com/weiju/amiga-stuff
synced 2025-11-19 16:01:31 +00:00
- hardware startup: added copper macros - file requester: add blocking requester for parent window
11 lines
207 B
Bash
Executable File
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
|