An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# iff2raw converter

![](https://github.com/nattfalk/iff2raw/workflows/Build/badge.svg)

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)