提交 a117fd8f authored 作者: Steve Underwood's avatar Steve Underwood

Avoid quirky complaints about using the top bit of an integer as an enum

上级 3ae2bdf4
......@@ -375,9 +375,9 @@ enum
/*! T.88 monochrome JBIG2 compression */
T30_SUPPORT_T88_COMPRESSION = 0x400,
/*! Dither a gray scale image down a simple bilevel image, with rescaling to fit a FAX page */
T30_SUPPORT_GRAY_TO_BILEVEL = 0x40000000,
T30_SUPPORT_GRAY_TO_BILEVEL = 0x10000000,
/*! Dither a colour image down a simple bilevel image, with rescaling to fit a FAX page */
T30_SUPPORT_COLOUR_TO_BILEVEL = 0x80000000
T30_SUPPORT_COLOUR_TO_BILEVEL = 0x20000000
};
enum
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论