https://github.com/nattfalk/iff2raw
Command-line tool for converting IFF ILBM images to RAW format
https://github.com/nattfalk/iff2raw
amiga c iff image-converter
Last synced: 2 months ago
JSON representation
Command-line tool for converting IFF ILBM images to RAW format
- Host: GitHub
- URL: https://github.com/nattfalk/iff2raw
- Owner: nattfalk
- License: mit
- Created: 2019-01-31T15:03:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-21T13:48:15.000Z (over 5 years ago)
- Last Synced: 2025-04-02T20:53:25.122Z (6 months ago)
- Topics: amiga, c, iff, image-converter
- Language: C
- Homepage:
- Size: 30.3 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# iff2raw converter

A commandline tool for converting IFF images to RAW + palette file.
## Building
```
$ git clone https://github.com/nattfalk/iff2raw.git
$ cd iff2raw
$ make
```## Usage
Run `iff2raw -h` for help.
### Example
```
iff2raw -i image.iff -o outputname -r 1 -c 4 -p 1
```
Results in one RAW imagefile, `outputname.raw`, and a palette-file, `outputname.s`.### Parameters
`-i `
Name of input iff file`-o `
Output filename (without extension)`-c `
Color mode during save. 4 (default) = 4 bits per channel, 8 = 8 bits per channel`-p `
Palette mode during save. 0 (default) = binary, 1 = sourcecode/asm (MC680x0 asm)`-r `
Scanline mode during save. 0 (default) = Non-interleaved, 1 = Interleaved## Contact
Maintainer: [Michael Nattfalk](mailto:michaelnattfalk@gmail.com)