add comments to GraphicType const and badges to readme

This commit is contained in:
Simon Waldherr
2018-10-19 20:32:28 +02:00
parent 1c50607cb3
commit ac541f60b5
2 changed files with 5 additions and 3 deletions

View File

@@ -13,11 +13,11 @@ import (
type GraphicType int
const (
// using only hex characters (0-9A-F)
// ASCII graphic type using only hex characters (0-9A-F)
ASCII GraphicType = iota
// saving the same data as binary
// Binary saving the same data as binary
Binary
// compress the hex data via RLE
// CompressedASCII compresses the hex data via RLE
CompressedASCII
)