mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
Boneheaded mistake: was writing transparent pixels
git-svn-id: https://zxing.googlecode.com/svn/trunk@1032 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
9cfc5158b3
commit
0bf2c2a66e
|
@ -33,8 +33,8 @@ import java.awt.image.BufferedImage;
|
|||
*/
|
||||
public final class MatrixToImageWriter {
|
||||
|
||||
private static final int BLACK = 0x00000000;
|
||||
private static final int WHITE = 0x00FFFFFF;
|
||||
private static final int BLACK = 0xFF000000;
|
||||
private static final int WHITE = 0xFFFFFFFF;
|
||||
|
||||
private MatrixToImageWriter() {}
|
||||
|
||||
|
|
Loading…
Reference in a new issue