mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Force white squares (not same as bgcolour) in Ultracode
This commit is contained in:
@ -46,7 +46,7 @@ int colour_to_red(int colour) {
|
||||
int return_val = 0;
|
||||
|
||||
switch(colour) {
|
||||
case 0: // White
|
||||
case 8: // White
|
||||
case 3: // Magenta
|
||||
case 4: // Red
|
||||
case 5: // Yellow
|
||||
@ -61,7 +61,7 @@ int colour_to_green(int colour) {
|
||||
int return_val = 0;
|
||||
|
||||
switch(colour) {
|
||||
case 0: // White
|
||||
case 8: // White
|
||||
case 1: // Cyan
|
||||
case 5: // Yellow
|
||||
case 6: // Green
|
||||
@ -76,7 +76,7 @@ int colour_to_blue(int colour) {
|
||||
int return_val = 0;
|
||||
|
||||
switch(colour) {
|
||||
case 0: // White
|
||||
case 8: // White
|
||||
case 1: // Cyan
|
||||
case 2: // Blue
|
||||
case 3: // Magenta
|
||||
@ -617,15 +617,18 @@ INTERNAL int emf_plot(struct zint_symbol *symbol) {
|
||||
}
|
||||
|
||||
if (symbol->symbology == BARCODE_ULTRA) {
|
||||
printf("Using Ultra draw\n");
|
||||
for(i = 0; i < 8; i++) {
|
||||
if (rectangle_count_bycolour[i]) {
|
||||
fwrite(&emr_selectobject_colour[i], sizeof (emr_selectobject_t), 1, emf_file);
|
||||
|
||||
printf("colour %d\n", i);
|
||||
rect = symbol->vector->rectangles;
|
||||
this_rectangle = 0;
|
||||
while (rect) {
|
||||
if (rect->colour == i) {
|
||||
fwrite(&rectangle[this_rectangle], sizeof (emr_rectangle_t), 1, emf_file);
|
||||
printf("rect\n");
|
||||
}
|
||||
this_rectangle++;
|
||||
rect = rect->next;
|
||||
|
Reference in New Issue
Block a user