mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
- BMP/EMF/PCX/TIF: fix endianness on big-endian machines (note TIF
now always written as little-endian - simplifies testing) - READMEs: add date updated
This commit is contained in:
@ -1,3 +1,5 @@
|
||||
% backend/tests/README 2024-01-17
|
||||
|
||||
Zint backend test suite
|
||||
-----------------------
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
libzint - the open source barcode library
|
||||
Copyright (C) 2021-2023 Robin Stuart <rstuart114@gmail.com>
|
||||
Copyright (C) 2021-2024 Robin Stuart <rstuart114@gmail.com>
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
@ -123,8 +123,8 @@ static void test_colour_get_rgb(const testCtx *const p_ctx) {
|
||||
unsigned char red = 0, green = 0, blue = 0, alpha = 0, rgb_alpha = 0;
|
||||
int cyan, magenta, yellow, black;
|
||||
int have_alpha;
|
||||
char rgb[16];
|
||||
char cmyk[16];
|
||||
char rgb[64];
|
||||
char cmyk[64];
|
||||
|
||||
if (testContinue(p_ctx, i)) continue;
|
||||
|
||||
|
Reference in New Issue
Block a user