Skip to content
This repository has been archived by the owner on Jun 2, 2022. It is now read-only.

Commit

Permalink
dev_tools/create_test_pngs: fix incorrect bit-names
Browse files Browse the repository at this point in the history
a tRNS chunk doubles it..
  • Loading branch information
DeadSix27 committed May 23, 2019
1 parent 72774f2 commit 4fabf35
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dev_tools/create_test_pngs.py
Expand Up @@ -55,13 +55,13 @@
8: 8,
}
},
"indexed_alpha" : { # is this even correct?
"indexed_alpha" : { # not sure if this is valid.
"png_type": 3,
"bits": {
1: 2,
2: 4,
4: 8,
# 8: 16, # convert-im6.q16: Valid palette required for paletted images `indexed_alpha_8-16bit_type_3.png' @ error/png.c/MagickPNGErrorHandler/1628.
1: 4,
2: 8,
4: 16,
# 8: 32, # convert-im6.q16: Valid palette required for paletted images `indexed_alpha_8-16bit_type_3.png' @ error/png.c/MagickPNGErrorHandler/1628.
}
},
"truecolor" : {
Expand Down

0 comments on commit 4fabf35

Please sign in to comment.