| |
AKA :
png2koala png2hires png2sprites png2chars animation2prg sid2prg gif2prg png2mcibitmap png2ecm png2mixedcharset png2petscii
Website :
https://github.com/staD020/png2prg
Credits :
Download :
Look for downloads on external sites:
Pokefinder.org
Production Info Submitted by Burglar on 30 March 2024
# PNG2PRG 1.6 by burg
Png2prg converts a 320x200 image (png/gif/jpeg) to a c64 hires or
multicolor bitmap, charset, petscii, ecm or sprites prg. It will find the best
matching palette and background/bitpair-colors automatically, no need to modify
your source images or configure a palette.
Vice screenshots with default borders (384x272) are automatically cropped.
Vice's main screen offset is at x=32, y=35.
Images in sprite dimensions will be converted to sprites.
The resulting .prg includes the 2-byte start address and optional displayer.
The displayers can optionally play a .sid tune.
This tool can be used in all buildchains and all common platforms.
## What it is *not*
Png2prg is not a tool to wire fullcolor images. It needs input images to
already be compliant with c64 color and size restrictions.
In verbose mode (-v) it outputs locations of color clashes, if any.
If you do need to wire fullcolor images, check out Youth's [Retropixels](https://www.micheldebree.nl/retropixels/).
## Supported Graphics Modes
koala: multicolor bitmap (max 4 colors per char)
hires: singlecolor bitmap (max 2 colors per char)
mixedcharset: multicolor charset (max 4 colors per char (fixed bgcol, d022, d023))
mccharset: multicolor charset (max 4 colors)
sccharset: singlecolor charset (max 2 colors per char (fixed bgcol))
petscii: singlecolor rom charset (max 2 colors per char (fixed bgcol))
mcsprites: multicolor sprites (max 4 colors)
scsprites: singlecolor sprites (max 2 colors)
mcibitmap: 320x200 multicolor interlace bitmap (max 4 colors per char/frame)
Png2prg is mostly able to autodetect the correct graphics mode, but you can
also force a specific graphics mode with the -mode flag:
./png2prg -m koala image.png
## Koala or Hires Bitmap
Bitmap: $2000 - $3f3f
Screen: $3f40 - $4327
D020: $4328 (singlecolor only)
D800: $4328 - $470f (multicolor only)
D021: $4710 (multicolor only, low-nibble)
D020: $4710 (multicolor only, high-nibble)
## Multicolor Interlace Bitmap
You can supply one 320x200 multicolor image with max 4 colors per 8x8 pixel
char per frame of which at least 2 are shared (the D021 and D800 colors).
Or supply both frames in regular koala specs (-interlace flag required).
When making screenshots in vice, please disable the d016 pixel shift manually.
./png2prg -i testdata/madonna/frame_0.png testdata/madonna/frame_1.png
### Drazlace (shared screenram and colorram for both frames)
./png2prg testdata/madonna/cjam_pure_madonna.png
D800: $5800 - $5be7
Screen: $5c00 - $5fe7
Bitmap1: $6000 - $7f3f
D021: $7f40 (low-nibble)
D020: $7f40 (high-nibble)
D016Offset: $7f42
Bitmap2: $8000 - $9f3f
### Multicolor Interlace (shared colorram, true paint .mci format)
./png2prg -i -d016 1 testdata/mcinterlace/parriot?.png
Screen1: $9c00 - $9fe7
D021: $9fe8 (low-nibble)
D020: $9fe8 (high-nibble)
D016Offset: $9fe9
Bitmap1: $a000 - $bf3f
Bitmap2: $c000 - $df3f
Screen2: $e000 - $e3e7
D800: $e400 - $e7e7
## Singlecolor, PETSCII or ECM Charset (individual d800 colors)
By default charsets are packed, they only contain unique characters.
If you do not want charpacking, eg for a 1x1 charset, please use -no-pack.
With ECM -bitpair-colors can be used to force d021-d024 colors.
NB: individual d800 colors are not supported with -no-pack.
./png2prg -m sccharset testdata/hirescharset/ohno_logo.png
./png2prg -m petscii testdata/petscii/hein_hibiscus.png
./png2prg -m ecm testdata/ecm/xpardey.png
./png2prg -m ecm testdata/ecm/shampoo.png
./png2prg -m ecm -bpc 2,7,14,0 testdata/ecm/orion.png
Charset: $2000-$27ff (omitted for petscii)
Screen: $2800-$2be7
D800: $2c00-$2fe7
D020: $2fe8
D021: $2fe9
D022: $2fea (ecm only)
D023: $2feb (ecm only)
D024: $2fec (ecm only)
## Mixed Multi/Singlecolor Charset (individual d800 colors)
Png2prg tries to figure out the right -bitpair-colors and auto-corrects
where it can, but there still are edge-cases like the ones below.
If an impossible color is found, an error will be displayed.
Swap some -bpc colors around and retry.
There can also be cases where manual -bpc colors can influence char-count or
packed size.
./png2prg -m mixedcharset testdata/mixedcharset/hein_neo.png
./png2prg -m mixedcharset testdata/mixedcharset/huntress.gif
./png2prg -m mixedcharset -bpc 3 testdata/mixedcharset/shine.png
./png2prg -m mixedcharset -bpc 0 testdata/mixedcharset/charsetcompo.png
Charset: $2000-$27ff
Screen: $2800-$2be7
D800: $2c00-$2fe7
D020: $2fe8
D021: $2fe9
D022: $2fea
D023: $2feb
## Single or Multicolor Sprites
If the source image size is a multiple of a 24x21 pixel sprite,
the image is considered to contain sprites.
The image will be converted from left to right, top to bottom.
Sprite 1: $2000-$203f
Sprite 2: $2040-$207f
...
## Bitpair Colors
By default, png2prg guesses bitpair colors by itself. In most cases you
don't need to configure anything. It will provide a mostly normalized image
which should yield good pack results, but your miles may vary.
To give you more control, you can force/prefer a specific bitpair
color-order. Use c64 colors, so 0 for black, 1 for white, 2 for red, etc.
The following example will force background color 0 for bitpair 00 and
prefer colors 6,14,3 for bitpairs 01,10,11:
./png2prg -bitpair-colors 0,6,14,3 image.png
It's also possible to explicitly skip certain bitpair preferences with -1:
./png2prg -bitpair-colors 0,-1,-1,3 image.png
## Sprite Animation
Each frame will be concatenated in the output .prg.
You can supply an animated .gif or multiple image files.
## Bitmap Animation (only koala and hires)
If multiple files are added, they are treated as animation frames.
You can also supply an animated .gif.
The first image will be exported with all framedata appended.
Koala animation frames start at $4711, hires at $4329.
The frame files are following this format.
Each frame consists of 1 or more chunks. A chunk looks like this:
.byte $03 // number of chars in this chunk
// $00 marks end of frame
// $ff marks end of all frames
.word bitmap // bitmap address of this chunk (the high byte is <$20)
.word screen // screenram address (the high byte is <$04)
For each char in this chunk:
.byte 0,31,15,7,8,34,0,128 // pixels
.byte $64 // screenram colors
.byte $01 // colorram color (koala only)
... // next char(s)
... // next chunks
.byte 0 // end of frame
... // next frame(s)
.byte $ff // end of all frames
## Displayer
The -d or -display flag will link displayer code infront of the picture.
By default it will also crunch the resulting file with Antonio Savona's
[TSCrunch](https://github.com/tonysavon/TSCrunch/) with a couple of changes in my own [fork](https://github.com/staD020/TSCrunch/).
All displayers except for sprites support adding a .sid.
Multispeed sids are supported as long as the .sid initializes the CIA timers
correctly.
You can use sids located from $0e00-$1fff or $e000+ in the displayers.
More areas may be free depending on graphics type.
A memory usage map is shown on error and in -vv (very verbose) mode.
If needed, you can relocate most sids using lft's [sidreloc](http://www.linusakesson.net/software/sidreloc/index.php).
Zeropages $08-$0f are used in the animation displayers, while none are used
in hires/koala displayers, increasing sid compatibility.
## Examples
This release contains examples with all assets included for you to test with.
Also included are the assets of [Évoluer](Evoluer) by The Sarge and Flotsam.
## Install from source
First [install Go 1.20 or higher](https://go.dev/dl/), then:
go install github.com/staD020/png2prg/cmd/png2prg@latest
Png2prg was built on Linux, building on Mac should work out of the box.
For Windows, try out Windows Subsystem Linux (WSL), works pretty well.
However, natively building on Windows should be easy enough, look at
Compiling without Make below.
The compiled displayer prgs are included in the repo to ease building
and importing png2prg as a library. Java is only required to build
the displayers with KickAssembler (included in the repo).
### Compiling with Make (recommended)
make -j
Build for all common targets:
make all -j
### Compiling without Make
go build ./cmd/png2prg
## Install and use as library
In your Go project's path, go get the library:
go get github.com/staD020/png2prg
In essence png2prg implements the [io.WriterTo](https://pkg.go.dev/io#WriterTo) interface.
Typical usage could look like below. A more complex example can be found
in the [source](https://github.com/staD020/png2prg/blob/master/cmd/png2prg/main..) of the cli tool.
```go
import (
"fmt"
"io"
"github.com/staD020/png2prg"
)
func convertPNG(w io.Writer, png io.Reader) (int64, error) {
p, err := png2prg.New(png2prg.Options{}, png)
if err != nil {
return 0, fmt.Errorf("png2prg.New failed: %w", err)
}
return p.WriteTo(w)
}
```
## Changes for version 1.6
- Added -mode mixedcharset for mixed multicolor/singlecolor and
individual d800 colors per char.
- Modified -mode sccharset to use individual d800 colors per char.
- Added -mode petscii.
- Added -mode ecm.
- Added -no-pack-empty to skip packing empty chars to filled chars to re-use
for different colors. Only for mixed and ecm charsets.
- Added -force-pack-empty for singlecolor and multicolor charset, may save
a char, but usually pack-ratio is worse due to increased d800 color usage.
- Improved auto-detection of graphics modes, including various charset modes.
- Added sid support to charset displayers.
- Added fullscreen fade in/out to charset displayers.
- Bug Fix: -force-border-color for singlecolor charset (thanks Raistlin).
- Bug Fix: do not write empty .prg file on error.
- Standardized d02x colors in output.prg for charset modes.
## Changes for version 1.4
- Support for even more far-out palette ranges (thanks Perplex).
- Now throws an error if the palette can't be detected properly, this should
never happen. Please let me know if you run into this error.
- Separated library and cli tool.
- Library supports the standard [io.Reader](https://pkg.go.dev/io#Reader) and [io.Writer](https://pkg.go.dev/io#Writer) interfaces.
- Patched [TSCrunch](https://github.com/staD020/TSCrunch/) further to increase crunch speed and use less memory.
- Added -parallel and -worker flags to treat each input file as standalone
and convert all files in parallel. Gifs with multiple frames are still
treated as animations.
- Stop relying on .gif filename extension, detect it.
- Add -alt-offset flag to force screenshot offset 32, 36), used by a few
graphicians. Though, please switch to the correct 32, 35.
- Add -symbols flag to write symbols to a .sym file.
- Interlace support for mcibitmap (drazlace and truepaint).
- Bugfix: allow blank images input (thanks Spider-J).
- Allow colors not present in the image as -bitpair-colors (thanks Map).
## Changes for version 1.2
- Added displayer for koala animations.
- Added displayer for hires animations.
- Added -frame-delay flag for animation displayers.
- Added -wait-seconds flag for animation displayers.
- Fixed bug in koala/hires displayers not allowing sids to overlap $c000-$c7ff.
- Expanding wildcards: using pic??.png or pic*.png now also works on Windows.
- Set bank via $dd00 in displayers.
## Changes for version 1.0
- Added fullscreen fade in/out to koala and hires displayers.
- Added optional .sid support for koala and hires displayers.
- Added optional crunching for all displayers using TSCrunch.
## Credits
Png2prg was created by Burglar, using the following third-party libraries:
[TSCrunch 1.3](https://github.com/tonysavon/TSCrunch/) by Antonio Savona for optional crunching when exporting
an image with a displayer.
[Colfade Doc](Colfade Doc) by Veto for the colfade
tables used in the koala and hires displayers.
[Kick Assembler](http://www.theweb.dk/KickAssembler/) by Slammer to compile the displayers.
[Go](https://go.dev/) by The Go Authors is the programming language used to create png2prg.
## Options
```
-alt-offset
use alternate screenshot offset with x,y = 32,36
-ao
alt-offset
-bitpair-colors string
prefer these colors in 2bit space, eg 0,6,14,3
-bpc string
bitpair-colors
-cpuprofile file
write cpu profile to file
-d display
-d016 int
d016offset (default 1)
-d016offset int
number of pixels to shift with d016 when using interlace (default 1)
-display
include displayer
-force-border-color int
force border color (default -1)
-force-pack-empty
optimize packing empty chars (only for sccharset)
-fpe
force-pack-empty
-frame-delay int
frames to wait before displaying next animation frame (default 6)
-h help
-help
help
-i interlace
-interlace
when you supply 2 frames, specify -interlace to treat the images as such
-m string
mode
-memprofile file
write memory profile to file (only in -parallel mode)
-mode string
force graphics mode to koala, hires, mixedcharset, sccharset, mccharset (4col), scsprites or mcsprites
-nc
no-crunch
-ng
no-guess
-no-crunch
do not TSCrunch displayer
-no-guess
do not guess preferred bitpair-colors
-no-pack
do not pack chars (only for sc/mc charset)
-no-pack-empty
do not optimize packing empty chars (only for mc/mixed/ecm charset)
-np
no-pack
-npe
no-pack-empty
-o string
out
-out string
specify outfile.prg, by default it changes extension to .prg
-p parallel
-parallel
run number of workers in parallel for fast conversion, treat each image as a standalone, not to be used for animations
-q quiet
-quiet
quiet, only display errors
-sid string
include .sid in displayer (see -help for free memory locations)
-sym
symbols
-symbols
export symbols to .sym
-targetdir string
specify targetdir
-td string
targetdir
-v verbose
-verbose
verbose output
-vv
very verbose, show memory usage map in most cases and implies -verbose
-w int
workers (default 12)
-wait-seconds int
seconds to wait before animation starts
-workers int
number of concurrent workers in parallel mode (default 12)
``` |
|
|
|
| Search CSDb |
| Navigate | |
|
| Detailed Info | |
|
| Fun Stuff | |
· Goofs · Hidden Parts · Trivia
|
|
| Forum | |
|
| Support CSDb | |
|
| |
|