mirror of
https://github.com/weiju/amiga-stuff
synced 2025-11-20 16:49:19 +00:00
startup and file requester change
- hardware startup: added copper macros - file requester: add blocking requester for parent window
This commit is contained in:
10
utils/jpg2ham6
Executable file
10
utils/jpg2ham6
Executable file
@ -0,0 +1,10 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user