mirror of
https://github.com/unidoc/unipdf.git
synced 2025-05-01 22:17:29 +08:00
18 lines
557 B
Go
18 lines
557 B
Go
![]() |
/*
|
||
|
* This file is subject to the terms and conditions defined in
|
||
|
* file 'LICENSE.md', which is part of this source code package.
|
||
|
*/
|
||
|
|
||
|
package bitmap
|
||
|
|
||
|
// Color is the jbig2 color interpretation enum.
|
||
|
// The naming convention taken from 'https://en.wikipedia.org/wiki/Binary_image#Interpretation'.
|
||
|
type Color int
|
||
|
|
||
|
const (
|
||
|
// Vanilla is the bit interpretation where the 1'th bit means white and the 0'th bit means black.
|
||
|
Vanilla Color = iota
|
||
|
// Chocolate is the bit interpretation where the 0'th bit means white and the 1'th bit means black.
|
||
|
Chocolate
|
||
|
)
|