zint-barcode-generator/backend/png.c

1114 lines
34 KiB
C
Raw Normal View History

2008-07-13 17:15:55 -04:00
/* png.c - Handles output to PNG file */
/*
libzint - the open source barcode library
2009-11-08 16:24:32 -05:00
Copyright (C) 2009 Robin Stuart <robin@zint.org.uk>
2008-07-13 17:15:55 -04:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <stdio.h>
2009-10-22 18:02:02 -04:00
#ifdef _MSC_VER
#include <fcntl.h>
#include <io.h>
#endif
2008-07-13 17:15:55 -04:00
#include <stdlib.h>
#include <string.h>
#include "common.h"
#ifdef _MSC_VER
#include <malloc.h>
#endif /* _MSC_VER */
#ifndef NO_PNG
#include "png.h" /* libpng header; includes zlib.h and setjmp.h */
2008-07-13 17:15:55 -04:00
#include "maxipng.h" /* Maxicode shapes */
#endif /* NO_PNG */
2008-07-18 10:35:32 -04:00
#include "font.h" /* Font for human readable text */
2008-07-13 17:15:55 -04:00
#define SSET "0123456789ABCDEF"
2009-11-08 16:24:32 -05:00
#define PNG_DATA 100
#define BMP_DATA 200
2009-11-09 04:18:08 -05:00
#ifndef NO_PNG
2008-07-13 17:15:55 -04:00
struct mainprog_info_type {
long width;
long height;
FILE *outfile;
jmp_buf jmpbuf;
};
static void writepng_error_handler(png_structp png_ptr, png_const_charp msg)
{
struct mainprog_info_type *graphic;
fprintf(stderr, "writepng libpng error: %s\n", msg);
fflush(stderr);
graphic = (struct mainprog_info_type*)png_get_error_ptr(png_ptr);
2008-07-13 17:15:55 -04:00
if (graphic == NULL) { /* we are completely hosed now */
fprintf(stderr,
"writepng severe error: jmpbuf not recoverable; terminating.\n");
fflush(stderr);
exit(99);
}
longjmp(graphic->jmpbuf, 1);
}
2009-11-08 16:24:32 -05:00
int png_pixel_plot(struct zint_symbol *symbol, int image_height, int image_width, char *pixelbuf, int rotate_angle)
2008-07-13 17:15:55 -04:00
{
struct mainprog_info_type wpng_info;
struct mainprog_info_type *graphic;
#ifndef _MSC_VER
2008-07-18 10:35:32 -04:00
unsigned char outdata[image_width * 3];
#else
unsigned char* outdata = (unsigned char*)_alloca(image_width * 3);
#endif
2008-07-13 17:15:55 -04:00
png_structp png_ptr;
png_infop info_ptr;
graphic = &wpng_info;
2008-07-18 10:35:32 -04:00
unsigned long rowbytes;
2008-07-13 17:15:55 -04:00
unsigned char *image_data;
2008-09-30 11:05:53 -04:00
int i, row, column, errno;
2008-07-13 17:15:55 -04:00
int fgred, fggrn, fgblu, bgred, bggrn, bgblu;
2008-07-18 10:35:32 -04:00
2008-09-02 15:46:34 -04:00
switch(rotate_angle) {
case 0:
case 180:
graphic->width = image_width;
graphic->height = image_height;
break;
case 90:
case 270:
graphic->width = image_height;
graphic->height = image_width;
break;
}
2008-07-13 17:15:55 -04:00
/* sort out colour options */
2008-10-03 05:26:27 -04:00
to_upper((unsigned char*)symbol->fgcolour);
to_upper((unsigned char*)symbol->bgcolour);
2008-07-13 17:15:55 -04:00
if(strlen(symbol->fgcolour) != 6) {
2009-04-28 11:31:46 -04:00
strcpy(symbol->errtxt, "Malformed foreground colour target");
2008-07-13 17:15:55 -04:00
return ERROR_INVALID_OPTION;
}
if(strlen(symbol->bgcolour) != 6) {
2009-04-28 11:31:46 -04:00
strcpy(symbol->errtxt, "Malformed background colour target");
2008-07-13 17:15:55 -04:00
return ERROR_INVALID_OPTION;
}
2009-10-06 15:03:00 -04:00
errno = is_sane(SSET, (unsigned char*)symbol->fgcolour, strlen(symbol->fgcolour));
2008-07-13 17:15:55 -04:00
if (errno == ERROR_INVALID_DATA) {
2009-04-28 11:31:46 -04:00
strcpy(symbol->errtxt, "Malformed foreground colour target");
2008-07-13 17:15:55 -04:00
return ERROR_INVALID_OPTION;
}
2009-10-06 15:03:00 -04:00
errno = is_sane(SSET, (unsigned char*)symbol->bgcolour, strlen(symbol->bgcolour));
2008-07-13 17:15:55 -04:00
if (errno == ERROR_INVALID_DATA) {
2009-04-28 11:31:46 -04:00
strcpy(symbol->errtxt, "Malformed background colour target");
2008-07-13 17:15:55 -04:00
return ERROR_INVALID_OPTION;
}
fgred = (16 * ctoi(symbol->fgcolour[0])) + ctoi(symbol->fgcolour[1]);
fggrn = (16 * ctoi(symbol->fgcolour[2])) + ctoi(symbol->fgcolour[3]);
fgblu = (16 * ctoi(symbol->fgcolour[4])) + ctoi(symbol->fgcolour[5]);
bgred = (16 * ctoi(symbol->bgcolour[0])) + ctoi(symbol->bgcolour[1]);
bggrn = (16 * ctoi(symbol->bgcolour[2])) + ctoi(symbol->bgcolour[3]);
bgblu = (16 * ctoi(symbol->bgcolour[4])) + ctoi(symbol->bgcolour[5]);
/* Open output file in binary mode */
2008-12-21 07:17:14 -05:00
if((symbol->output_options & BARCODE_STDOUT) != 0) {
2009-10-22 18:02:02 -04:00
#ifdef _MSC_VER
if (-1 == _setmode(_fileno(stdout), _O_BINARY)) {
strcpy(symbol->errtxt, "Can't open output file");
return ERROR_FILE_ACCESS;
}
#endif
2008-12-21 07:17:14 -05:00
graphic->outfile = stdout;
} else {
if (!(graphic->outfile = fopen(symbol->outfile, "wb"))) {
2009-04-28 11:31:46 -04:00
strcpy(symbol->errtxt, "Can't open output file");
2008-12-21 07:17:14 -05:00
return ERROR_FILE_ACCESS;
}
2008-07-13 17:15:55 -04:00
}
/* Set up error handling routine as proc() above */
2008-12-21 07:17:14 -05:00
png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, graphic, writepng_error_handler, NULL);
2008-07-13 17:15:55 -04:00
if (!png_ptr) {
2009-04-28 11:31:46 -04:00
strcpy(symbol->errtxt, "Out of memory");
2008-07-13 17:15:55 -04:00
return ERROR_MEMORY;
}
info_ptr = png_create_info_struct(png_ptr);
if (!info_ptr) {
png_destroy_write_struct(&png_ptr, NULL);
2009-04-28 11:31:46 -04:00
strcpy(symbol->errtxt, "Out of memory");
2008-07-13 17:15:55 -04:00
return ERROR_MEMORY;
}
/* catch jumping here */
if (setjmp(graphic->jmpbuf)) {
png_destroy_write_struct(&png_ptr, &info_ptr);
2009-04-28 11:31:46 -04:00
strcpy(symbol->errtxt, "libpng error occurred");
2008-07-13 17:15:55 -04:00
return ERROR_MEMORY;
}
/* open output file with libpng */
png_init_io(png_ptr, graphic->outfile);
/* set compression */
png_set_compression_level(png_ptr, Z_BEST_COMPRESSION);
/* set Header block */
png_set_IHDR(png_ptr, info_ptr, graphic->width, graphic->height,
2008-07-18 10:35:32 -04:00
8, PNG_COLOR_TYPE_RGB, PNG_INTERLACE_NONE,
PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
2008-07-13 17:15:55 -04:00
/* write all chunks up to (but not including) first IDAT */
png_write_info(png_ptr, info_ptr);
/* set up the transformations: for now, just pack low-bit-depth pixels
2008-07-18 10:35:32 -04:00
into bytes (one, two or four pixels per byte) */
2008-07-13 17:15:55 -04:00
png_set_packing(png_ptr);
/* set rowbytes - depends on picture depth */
rowbytes = wpng_info.width * 3;
/* Pixel Plotting */
2008-09-02 15:46:34 -04:00
switch(rotate_angle) {
case 0: /* Plot the right way up */
for(row = 0; row < image_height; row++) {
for(column = 0; column < image_width; column++) {
i = column * 3;
switch(*(pixelbuf + (image_width * row) + column))
{
case '1':
outdata[i] = fgred;
outdata[i + 1] = fggrn;
outdata[i + 2] = fgblu;
break;
default:
outdata[i] = bgred;
outdata[i + 1] = bggrn;
outdata[i + 2] = bgblu;
break;
}
}
/* write row contents to file */
image_data = outdata;
png_write_row(png_ptr, image_data);
}
break;
case 90: /* Plot 90 degrees clockwise */
for(row = 0; row < image_width; row++) {
for(column = 0; column < image_height; column++) {
i = column * 3;
switch(*(pixelbuf + (image_width * (image_height - column - 1)) + row))
{
case '1':
outdata[i] = fgred;
outdata[i + 1] = fggrn;
outdata[i + 2] = fgblu;
break;
default:
outdata[i] = bgred;
outdata[i + 1] = bggrn;
outdata[i + 2] = bgblu;
break;
}
}
2008-07-13 17:15:55 -04:00
2008-09-02 15:46:34 -04:00
/* write row contents to file */
image_data = outdata;
png_write_row(png_ptr, image_data);
2008-07-13 17:15:55 -04:00
}
2008-09-02 15:46:34 -04:00
break;
case 180: /* Plot upside down */
for(row = 0; row < image_height; row++) {
for(column = 0; column < image_width; column++) {
i = column * 3;
switch(*(pixelbuf + (image_width * (image_height - row - 1)) + (image_width - column - 1)))
{
case '1':
outdata[i] = fgred;
outdata[i + 1] = fggrn;
outdata[i + 2] = fgblu;
break;
default:
outdata[i] = bgred;
outdata[i + 1] = bggrn;
outdata[i + 2] = bgblu;
break;
}
}
/* write row contents to file */
image_data = outdata;
png_write_row(png_ptr, image_data);
}
break;
case 270: /* Plot 90 degrees anti-clockwise */
for(row = 0; row < image_width; row++) {
for(column = 0; column < image_height; column++) {
i = column * 3;
switch(*(pixelbuf + (image_width * column) + (image_width - row - 1)))
{
case '1':
outdata[i] = fgred;
outdata[i + 1] = fggrn;
outdata[i + 2] = fgblu;
break;
default:
outdata[i] = bgred;
outdata[i + 1] = bggrn;
outdata[i + 2] = bgblu;
break;
2008-07-18 10:35:32 -04:00
2008-09-02 15:46:34 -04:00
}
}
/* write row contents to file */
image_data = outdata;
png_write_row(png_ptr, image_data);
}
break;
2008-07-13 17:15:55 -04:00
}
/* End the file */
png_write_end(png_ptr, NULL);
/* make sure we have disengaged */
if (png_ptr && info_ptr) png_destroy_write_struct(&png_ptr, &info_ptr);
fclose(wpng_info.outfile);
return 0;
}
2009-11-09 04:18:08 -05:00
#endif /* NO_PNG */
2008-07-13 17:15:55 -04:00
2009-11-08 16:24:32 -05:00
int bmp_pixel_plot(struct zint_symbol *symbol, int image_height, int image_width, char *pixelbuf, int rotate_angle)
{
unsigned long rowbytes;
int i, row, column, errno;
int fgred, fggrn, fgblu, bgred, bggrn, bgblu;
switch(rotate_angle) {
case 0:
case 180:
symbol->bitmap_width = image_width;
symbol->bitmap_height = image_height;
break;
case 90:
case 270:
symbol->bitmap_width = image_height;
symbol->bitmap_height = image_width;
break;
}
if (symbol->bitmap != NULL)
free(symbol->bitmap);
symbol->bitmap = (char *) malloc(image_width * image_height * 3);
/* sort out colour options */
to_upper((unsigned char*)symbol->fgcolour);
to_upper((unsigned char*)symbol->bgcolour);
if(strlen(symbol->fgcolour) != 6) {
strcpy(symbol->errtxt, "Malformed foreground colour target");
return ERROR_INVALID_OPTION;
}
if(strlen(symbol->bgcolour) != 6) {
strcpy(symbol->errtxt, "Malformed background colour target");
return ERROR_INVALID_OPTION;
}
errno = is_sane(SSET, (unsigned char*)symbol->fgcolour, strlen(symbol->fgcolour));
if (errno == ERROR_INVALID_DATA) {
strcpy(symbol->errtxt, "Malformed foreground colour target");
return ERROR_INVALID_OPTION;
}
errno = is_sane(SSET, (unsigned char*)symbol->bgcolour, strlen(symbol->fgcolour));
if (errno == ERROR_INVALID_DATA) {
strcpy(symbol->errtxt, "Malformed background colour target");
return ERROR_INVALID_OPTION;
}
fgred = (16 * ctoi(symbol->fgcolour[0])) + ctoi(symbol->fgcolour[1]);
fggrn = (16 * ctoi(symbol->fgcolour[2])) + ctoi(symbol->fgcolour[3]);
fgblu = (16 * ctoi(symbol->fgcolour[4])) + ctoi(symbol->fgcolour[5]);
bgred = (16 * ctoi(symbol->bgcolour[0])) + ctoi(symbol->bgcolour[1]);
bggrn = (16 * ctoi(symbol->bgcolour[2])) + ctoi(symbol->bgcolour[3]);
bgblu = (16 * ctoi(symbol->bgcolour[4])) + ctoi(symbol->bgcolour[5]);
/* set rowbytes - depends on picture depth */
rowbytes = symbol->bitmap_width * 3;
/* Pixel Plotting */
i = 0;
switch(rotate_angle) {
case 0: /* Plot the right way up */
for(row = 0; row < image_height; row++) {
for(column = 0; column < image_width; column++) {
switch(*(pixelbuf + (image_width * row) + column))
{
case '1':
symbol->bitmap[i++] = fgred;
symbol->bitmap[i++] = fggrn;
symbol->bitmap[i++] = fgblu;
break;
default:
symbol->bitmap[i++] = bgred;
symbol->bitmap[i++] = bggrn;
symbol->bitmap[i++] = bgblu;
break;
}
}
}
break;
case 90: /* Plot 90 degrees clockwise */
for(row = 0; row < image_width; row++) {
for(column = 0; column < image_height; column++) {
switch(*(pixelbuf + (image_width * (image_height - column - 1)) + row))
{
case '1':
symbol->bitmap[i++] = fgred;
symbol->bitmap[i++] = fggrn;
symbol->bitmap[i++] = fgblu;
break;
default:
symbol->bitmap[i++] = bgred;
symbol->bitmap[i++] = bggrn;
symbol->bitmap[i++] = bgblu;
break;
}
}
}
break;
case 180: /* Plot upside down */
for(row = 0; row < image_height; row++) {
for(column = 0; column < image_width; column++) {
switch(*(pixelbuf + (image_width * (image_height - row - 1)) + (image_width - column - 1)))
{
case '1':
symbol->bitmap[i++] = fgred;
symbol->bitmap[i++] = fggrn;
symbol->bitmap[i++] = fgblu;
break;
default:
symbol->bitmap[i++] = bgred;
symbol->bitmap[i++] = bggrn;
symbol->bitmap[i++] = bgblu;
break;
}
}
}
break;
case 270: /* Plot 90 degrees anti-clockwise */
for(row = 0; row < image_width; row++) {
for(column = 0; column < image_height; column++) {
switch(*(pixelbuf + (image_width * column) + (image_width - row - 1)))
{
case '1':
symbol->bitmap[i++] = fgred;
symbol->bitmap[i++] = fggrn;
symbol->bitmap[i++] = fgblu;
break;
default:
symbol->bitmap[i++] = bgred;
symbol->bitmap[i++] = bggrn;
symbol->bitmap[i++] = bgblu;
break;
}
}
}
break;
}
return 0;
}
int png_to_file(struct zint_symbol *symbol, int image_height, int image_width, char *pixelbuf, int rotate_angle, int image_type)
{
int error_number;
if(image_type == PNG_DATA) {
2009-11-09 04:18:08 -05:00
#ifndef NO_PNG
2009-11-08 16:24:32 -05:00
error_number = png_pixel_plot(symbol, image_height, image_width, pixelbuf, rotate_angle);
2009-11-09 04:18:08 -05:00
#else
return ERROR_INVALID_OPTION;
#endif
2009-11-08 16:24:32 -05:00
} else {
error_number = bmp_pixel_plot(symbol, image_height, image_width, pixelbuf, rotate_angle);
}
return error_number;
}
2008-07-18 10:35:32 -04:00
void draw_bar(char *pixelbuf, int xpos, int xlen, int ypos, int ylen, int image_width, int image_height)
2008-07-13 17:15:55 -04:00
{
2008-07-18 10:35:32 -04:00
/* Draw a rectangle */
int i, j, png_ypos;
2008-07-13 17:15:55 -04:00
png_ypos = image_height - ypos - ylen;
2008-07-18 10:35:32 -04:00
/* This fudge is needed because EPS measures height from the bottom up but
PNG measures y position from the top down */
2008-07-13 17:15:55 -04:00
for(i = (xpos); i < (xpos + xlen); i++) {
for( j = (png_ypos); j < (png_ypos + ylen); j++) {
2008-07-18 10:35:32 -04:00
*(pixelbuf + (image_width * j) + i) = '1';
}
2008-07-13 17:15:55 -04:00
}
2008-07-18 10:35:32 -04:00
}
int bullseye_pixel(int row, int col) {
int block_val, block_pos, return_val;
block_val = bullseye_compressed[(row * 12) + (col / 8)];
return_val = 0;
block_pos = col % 8;
switch(block_pos) {
case 0: if((block_val & 0x80) != 0) { return_val = 1; } break;
case 1: if((block_val & 0x40) != 0) { return_val = 1; } break;
case 2: if((block_val & 0x20) != 0) { return_val = 1; } break;
case 3: if((block_val & 0x10) != 0) { return_val = 1; } break;
case 4: if((block_val & 0x08) != 0) { return_val = 1; } break;
case 5: if((block_val & 0x04) != 0) { return_val = 1; } break;
case 6: if((block_val & 0x02) != 0) { return_val = 1; } break;
case 7: if((block_val & 0x01) != 0) { return_val = 1; } break;
}
return return_val;
}
void draw_bullseye(char *pixelbuf, int image_width, int xoffset, int yoffset)
2008-07-18 10:35:32 -04:00
{
/* Central bullseye in Maxicode symbols */
int i, j;
for(j = 103; j < 196; j++) {
for(i = 0; i < 93; i++) {
if(bullseye_pixel(j - 103, i)) {
/* if(bullseye[(((j - 103) * 93) + i)] == 1) { */
*(pixelbuf + (image_width * j) + (image_width * yoffset) + i + 99 + xoffset) = '1';
2008-07-18 10:35:32 -04:00
}
}
2008-07-13 17:15:55 -04:00
}
2008-07-18 10:35:32 -04:00
}
void draw_hexagon(char *pixelbuf, int image_width, int xposn, int yposn)
2008-07-18 10:35:32 -04:00
{
/* Put a hexagon into the pixel buffer */
int i, j;
for(i = 0; i < 12; i++) {
for(j = 0; j < 10; j++) {
if(hexagon[(i * 10) + j] == 1) {
*(pixelbuf + (image_width * i) + (image_width * yposn) + xposn + j) = '1';
2008-07-18 10:35:32 -04:00
}
}
2008-07-13 17:15:55 -04:00
}
2008-07-18 10:35:32 -04:00
}
2008-09-02 15:46:34 -04:00
void draw_letter(char *pixelbuf, unsigned char letter, int xposn, int yposn, int image_width, int image_height)
2008-07-18 10:35:32 -04:00
{
/* Put a letter into a position */
int skip, i, j, glyph_no, alphabet;
2008-07-13 17:15:55 -04:00
2008-07-18 10:35:32 -04:00
skip = 0;
alphabet = 0;
2008-07-13 17:15:55 -04:00
2008-07-18 10:35:32 -04:00
if(letter < 33) { skip = 1; }
if((letter > 127) && (letter < 161)) { skip = 1; }
2008-07-13 17:15:55 -04:00
2008-07-18 10:35:32 -04:00
if(skip == 0) {
if(letter > 128) {
alphabet = 1;
glyph_no = letter - 161;
} else {
glyph_no = letter - 33;
}
2008-09-02 15:46:34 -04:00
for(i = 0; i <= 13; i++) {
2008-07-18 10:35:32 -04:00
for(j = 0; j < 7; j++) {
if(alphabet == 0) {
if(ascii_font[(glyph_no * 7) + (i * 665) + j - 1] == 1) {
*(pixelbuf + (i * image_width) + (yposn * image_width) + xposn + j) = '1';
}
} else {
if(ascii_ext_font[(glyph_no * 7) + (i * 665) + j - 1] == 1) {
*(pixelbuf + (i * image_width) + (yposn * image_width) + xposn + j) = '1';
}
}
}
}
2008-07-13 17:15:55 -04:00
}
2008-07-18 10:35:32 -04:00
}
2008-10-03 05:26:27 -04:00
void draw_string(char *pixbuf, char input_string[], int xposn, int yposn, int image_width, int image_height)
2008-07-18 10:35:32 -04:00
{
/* Plot a string into the pixel buffer */
int i, string_length, string_left_hand;
2008-07-13 17:15:55 -04:00
2008-10-03 05:26:27 -04:00
string_length = strlen(input_string);
2008-07-18 10:35:32 -04:00
string_left_hand = xposn - ((7 * string_length) / 2);
for(i = 0; i < string_length; i++) {
draw_letter(pixbuf, input_string[i], string_left_hand + (i * 7), yposn, image_width, image_height);
2008-07-13 17:15:55 -04:00
}
2008-09-02 15:46:34 -04:00
2008-07-18 10:35:32 -04:00
}
2008-07-13 17:15:55 -04:00
2009-11-08 16:24:32 -05:00
int maxi_png_plot(struct zint_symbol *symbol, int rotate_angle, int data_type)
2008-07-18 10:35:32 -04:00
{
int i, row, column, xposn, yposn;
int image_height, image_width;
char *pixelbuf;
2008-09-28 07:06:11 -04:00
int error_number;
int xoffset, yoffset;
int scaler = (int)(2 * symbol->scale);
2008-09-28 07:06:11 -04:00
xoffset = symbol->border_width + symbol->whitespace_width;
yoffset = symbol->border_width;
image_width = 300 + (2 * xoffset * scaler);
image_height = 300 + (2 * yoffset * scaler);
2008-07-18 10:35:32 -04:00
if (!(pixelbuf = (char *) malloc(image_width * image_height))) {
2009-04-28 11:31:46 -04:00
printf("Insifficient memory for pixel buffer");
2008-07-18 10:35:32 -04:00
return ERROR_ENCODING_PROBLEM;
} else {
for(i = 0; i < (image_width * image_height); i++) {
*(pixelbuf + i) = '0';
}
2008-07-13 17:15:55 -04:00
}
2008-07-18 10:35:32 -04:00
draw_bullseye(pixelbuf, image_width, (scaler * xoffset), (scaler * yoffset));
2008-07-18 10:35:32 -04:00
for(row = 0; row < symbol->rows; row++) {
yposn = row * 9;
for(column = 0; column < symbol->width; column++) {
xposn = column * 10;
if(module_is_set(symbol, row, column)) {
2008-07-18 10:35:32 -04:00
if((row % 2) == 0) {
/* Even (full) row */
draw_hexagon(pixelbuf, image_width, xposn + (scaler * xoffset), yposn + (scaler * yoffset));
2008-07-18 10:35:32 -04:00
} else {
/* Odd (reduced) row */
xposn += 5;
draw_hexagon(pixelbuf, image_width, xposn + (scaler * xoffset), yposn + (scaler * yoffset));
2008-07-18 10:35:32 -04:00
}
}
}
2008-07-13 17:15:55 -04:00
}
if(((symbol->output_options & BARCODE_BOX) != 0) || ((symbol->output_options & BARCODE_BIND) != 0)) {
/* boundary bars */
draw_bar(pixelbuf, 0, image_width, 0, symbol->border_width * scaler, image_width, image_height);
draw_bar(pixelbuf, 0, image_width, 300 + (symbol->border_width * scaler), symbol->border_width * scaler, image_width, image_height);
}
if((symbol->output_options & BARCODE_BOX) != 0) {
/* side bars */
draw_bar(pixelbuf, 0, symbol->border_width * scaler, 0, image_height, image_width, image_height);
draw_bar(pixelbuf, 300 + ((symbol->border_width + symbol->whitespace_width + symbol->whitespace_width) * scaler), symbol->border_width * scaler, 0, image_height, image_width, image_height);
}
2009-11-08 16:24:32 -05:00
error_number=png_to_file(symbol, image_height, image_width, pixelbuf, rotate_angle, data_type);
2008-09-27 17:15:38 -04:00
free(pixelbuf);
2008-09-28 07:06:11 -04:00
return error_number;
2008-07-18 10:35:32 -04:00
}
2008-07-13 17:15:55 -04:00
2009-02-19 14:09:57 -05:00
void to_latin1(unsigned char source[], unsigned char preprocessed[])
{
2009-11-09 04:18:08 -05:00
int j, i, input_length;
2009-02-19 14:09:57 -05:00
input_length = ustrlen(source);
j = 0;
i = 0;
2009-11-09 04:18:08 -05:00
do {
2009-02-19 14:09:57 -05:00
if(source[i] < 128) {
preprocessed[j] = source[i];
j++;
2009-11-09 04:18:08 -05:00
i++;
2009-02-19 14:09:57 -05:00
} else {
if(source[i] == 0xC2) {
preprocessed[j] = source[i + 1];
j++;
2009-11-09 04:18:08 -05:00
i += 2;
2009-02-19 14:09:57 -05:00
}
if(source[i] == 0xC3) {
preprocessed[j] = source[i + 1] + 64;
j++;
2009-11-09 04:18:08 -05:00
i += 2;
2009-02-19 14:09:57 -05:00
}
}
2009-11-09 04:18:08 -05:00
} while (i < input_length);
2009-02-19 14:09:57 -05:00
preprocessed[j] = '\0';
return;
}
2009-11-08 16:24:32 -05:00
int png_plot(struct zint_symbol *symbol, int rotate_angle, int data_type)
2008-07-18 10:35:32 -04:00
{
int textdone, main_width, comp_offset, large_bar_count;
char textpart[10], addon[6];
float addon_text_posn, preset_height, large_bar_height;
int i, r, textoffset, yoffset, xoffset, latch, image_width, image_height;
char *pixelbuf;
int addon_latch = 0;
int this_row, block_width, plot_height, plot_yposn, textpos;
float row_height, row_posn;
2008-09-28 07:06:11 -04:00
int error_number;
int scaler = (int)(2 * symbol->scale);
2009-02-19 14:09:57 -05:00
int default_text_posn;
#ifndef _MSC_VER
unsigned char local_text[ustrlen(symbol->text) + 1];
#else
unsigned char* local_text = (unsigned char*)_alloca(ustrlen(symbol->text) + 1);
#endif
2009-11-09 04:18:08 -05:00
2009-02-19 14:09:57 -05:00
to_latin1(symbol->text, local_text);
2008-07-18 10:35:32 -04:00
textdone = 0;
main_width = symbol->width;
strcpy(addon, "");
comp_offset = 0;
addon_text_posn = 0.0;
2008-10-03 05:26:27 -04:00
row_height = 0;
2008-07-18 10:35:32 -04:00
if (symbol->height == 0) {
symbol->height = 50;
}
large_bar_count = 0;
preset_height = 0.0;
for(i = 0; i < symbol->rows; i++) {
preset_height += symbol->row_height[i];
if(symbol->row_height[i] == 0) {
large_bar_count++;
}
}
2008-07-13 17:15:55 -04:00
2008-07-18 10:35:32 -04:00
if (large_bar_count == 0) {
symbol->height = preset_height;
large_bar_height = 10;
} else {
large_bar_height = (symbol->height - preset_height) / large_bar_count;
2008-07-18 10:35:32 -04:00
}
while(!(module_is_set(symbol, symbol->rows - 1, comp_offset))) {
2008-07-18 10:35:32 -04:00
comp_offset++;
}
2008-07-13 17:15:55 -04:00
2008-07-18 10:35:32 -04:00
/* Certain symbols need whitespace otherwise characters get chopped off the sides */
2009-04-28 11:31:46 -04:00
if ((((symbol->symbology == BARCODE_EANX) && (symbol->rows == 1)) || (symbol->symbology == BARCODE_EANX_CC))
|| (symbol->symbology == BARCODE_ISBNX)) {
2009-02-19 14:09:57 -05:00
switch(ustrlen(local_text)) {
2008-07-18 10:35:32 -04:00
case 13: /* EAN 13 */
case 16:
case 19:
if(symbol->whitespace_width == 0) {
symbol->whitespace_width = 10;
}
main_width = 96 + comp_offset;
break;
default:
main_width = 68 + comp_offset;
}
}
if (((symbol->symbology == BARCODE_UPCA) && (symbol->rows == 1)) || (symbol->symbology == BARCODE_UPCA_CC)) {
if(symbol->whitespace_width == 0) {
symbol->whitespace_width = 10;
main_width = 96 + comp_offset;
}
}
if (((symbol->symbology == BARCODE_UPCE) && (symbol->rows == 1)) || (symbol->symbology == BARCODE_UPCE_CC)) {
if(symbol->whitespace_width == 0) {
symbol->whitespace_width = 10;
main_width = 51 + comp_offset;
}
}
latch = 0;
r = 0;
/* Isolate add-on text */
if(is_extendable(symbol->symbology)) {
for(i = 0; i < ustrlen(local_text); i++) {
if (latch == 1) {
addon[r] = local_text[i];
r++;
}
if (symbol->text[i] == '+') {
latch = 1;
}
2008-07-18 10:35:32 -04:00
}
}
addon[r] = '\0';
2009-02-19 14:09:57 -05:00
if(ustrlen(local_text) != 0) {
2008-07-18 10:35:32 -04:00
textoffset = 9;
} else {
textoffset = 0;
}
xoffset = symbol->border_width + symbol->whitespace_width;
yoffset = symbol->border_width;
image_width = scaler * (symbol->width + xoffset + xoffset);
image_height = scaler * (symbol->height + textoffset + yoffset + yoffset);
2008-07-18 10:35:32 -04:00
if (!(pixelbuf = (char *) malloc(image_width * image_height))) {
printf("Insufficient memory for pixel buffer");
2008-07-18 10:35:32 -04:00
return ERROR_ENCODING_PROBLEM;
} else {
for(i = 0; i < (image_width * image_height); i++) {
*(pixelbuf + i) = '0';
}
}
2009-02-19 14:09:57 -05:00
if(((symbol->output_options & BARCODE_BOX) != 0) || ((symbol->output_options & BARCODE_BIND) != 0)) {
default_text_posn = image_height - 17;
} else {
default_text_posn = image_height - 17 - symbol->border_width - symbol->border_width;
}
2008-07-18 10:35:32 -04:00
/* Plot the body of the symbol to the pixel buffer */
for(r = 0; r < symbol->rows; r++) {
this_row = symbol->rows - r - 1; /* invert r otherwise plots upside down */
if(symbol->row_height[this_row] == 0) {
row_height = large_bar_height;
} else {
row_height = symbol->row_height[this_row];
}
row_posn = 0;
for(i = 0; i < r; i++) {
if(symbol->row_height[symbol->rows - i - 1] == 0) {
row_posn += large_bar_height;
} else {
row_posn += symbol->row_height[symbol->rows - i - 1];
}
2008-07-13 17:15:55 -04:00
}
2008-07-18 10:35:32 -04:00
row_posn += (textoffset + yoffset);
2008-07-13 17:15:55 -04:00
2008-07-18 10:35:32 -04:00
plot_height = (int)row_height;
plot_yposn = (int)row_posn;
i = 0;
if(module_is_set(symbol, this_row, 0)) {
2008-07-18 10:35:32 -04:00
latch = 1;
} else {
latch = 0;
}
do {
block_width = 0;
do {
block_width++;
} while (module_is_set(symbol, this_row, i + block_width) == module_is_set(symbol, this_row, i));
2008-07-18 10:35:32 -04:00
if((addon_latch == 0) && (r == 0) && (i > main_width)) {
plot_height = (int)(row_height - 5.0);
plot_yposn = (int)(row_posn - 5.0);
addon_text_posn = row_posn + row_height - 8.0;
addon_latch = 1;
}
if(latch == 1) {
/* a bar */
draw_bar(pixelbuf, (i + xoffset) * scaler, block_width * scaler, plot_yposn * scaler, plot_height * scaler, image_width, image_height);
2008-07-18 10:35:32 -04:00
latch = 0;
} else {
/* a space */
latch = 1;
}
i += block_width;
2008-07-13 17:15:55 -04:00
2008-07-18 10:35:32 -04:00
} while (i < symbol->width);
}
xoffset += comp_offset;
2009-04-28 11:31:46 -04:00
if ((((symbol->symbology == BARCODE_EANX) && (symbol->rows == 1)) || (symbol->symbology == BARCODE_EANX_CC)) || (symbol->symbology == BARCODE_ISBNX)) {
2008-07-18 10:35:32 -04:00
/* guard bar extensions and text formatting for EAN8 and EAN13 */
2009-02-19 14:09:57 -05:00
switch(ustrlen(local_text)) {
2008-07-18 10:35:32 -04:00
case 8: /* EAN-8 */
case 11:
case 14:
draw_bar(pixelbuf, (0 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (2 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (32 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (34 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (64 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (66 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
2008-07-18 10:35:32 -04:00
for(i = 0; i < 4; i++) {
textpart[i] = symbol->text[i];
}
textpart[4] = '\0';
textpos = scaler * (17 + xoffset);
2009-02-19 14:09:57 -05:00
draw_string(pixelbuf, textpart, textpos, default_text_posn, image_width, image_height);
2008-07-18 10:35:32 -04:00
for(i = 0; i < 4; i++) {
textpart[i] = symbol->text[i + 4];
}
textpart[4] = '\0';
textpos = scaler * (50 + xoffset);
2009-02-19 14:09:57 -05:00
draw_string(pixelbuf, textpart, textpos, default_text_posn, image_width, image_height);
2008-07-18 10:35:32 -04:00
textdone = 1;
switch(strlen(addon)) {
case 2:
2009-07-08 05:13:19 -04:00
textpos = scaler * (xoffset + 86);
draw_string(pixelbuf, addon, textpos, image_height - (addon_text_posn * scaler) - 13, image_width, image_height);
2008-07-18 10:35:32 -04:00
break;
case 5:
2009-07-08 05:13:19 -04:00
textpos = scaler * (xoffset + 100);
draw_string(pixelbuf, addon, textpos, image_height - (addon_text_posn * scaler) - 13, image_width, image_height);
2008-07-18 10:35:32 -04:00
break;
2008-07-13 17:15:55 -04:00
}
2008-07-18 10:35:32 -04:00
break;
case 13: /* EAN 13 */
case 16:
case 19:
draw_bar(pixelbuf, (0 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (2 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (46 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (48 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (92 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (94 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
2008-07-18 10:35:32 -04:00
textpart[0] = symbol->text[0];
2008-10-06 03:15:48 -04:00
textpart[1] = '\0';
textpos = scaler * (-7 + xoffset);
2009-02-19 14:09:57 -05:00
draw_string(pixelbuf, textpart, textpos, default_text_posn, image_width, image_height);
2008-07-18 10:35:32 -04:00
for(i = 0; i < 6; i++) {
textpart[i] = symbol->text[i + 1];
2008-07-13 17:15:55 -04:00
}
2008-07-18 10:35:32 -04:00
textpart[6] = '\0';
textpos = scaler * (24 + xoffset);
2009-02-19 14:09:57 -05:00
draw_string(pixelbuf, textpart, textpos, default_text_posn, image_width, image_height);
2008-07-18 10:35:32 -04:00
for(i = 0; i < 6; i++) {
textpart[i] = symbol->text[i + 7];
}
textpart[6] = '\0';
textpos = scaler * (71 + xoffset);
2009-02-19 14:09:57 -05:00
draw_string(pixelbuf, textpart, textpos, default_text_posn, image_width, image_height);
2008-07-18 10:35:32 -04:00
textdone = 1;
switch(strlen(addon)) {
case 2:
2009-07-08 05:13:19 -04:00
textpos = scaler * (xoffset + 114);
draw_string(pixelbuf, addon, textpos, image_height - (addon_text_posn * scaler) - 13, image_width, image_height);
2008-07-18 10:35:32 -04:00
break;
case 5:
2009-07-08 05:13:19 -04:00
textpos = scaler * (xoffset + 128);
draw_string(pixelbuf, addon, textpos, image_height - (addon_text_posn * scaler) - 13, image_width, image_height);
2008-07-18 10:35:32 -04:00
break;
}
break;
2008-07-13 17:15:55 -04:00
}
2008-07-18 10:35:32 -04:00
}
if (((symbol->symbology == BARCODE_UPCA) && (symbol->rows == 1)) || (symbol->symbology == BARCODE_UPCA_CC)) {
/* guard bar extensions and text formatting for UPCA */
latch = 1;
2008-07-13 17:15:55 -04:00
2008-07-18 10:35:32 -04:00
i = 0 + comp_offset;
do {
block_width = 0;
do {
block_width++;
} while (module_is_set(symbol, symbol->rows - 1, i + block_width) == module_is_set(symbol, symbol->rows - 1, i));
2008-07-18 10:35:32 -04:00
if(latch == 1) {
/* a bar */
draw_bar(pixelbuf, (i + xoffset - comp_offset) * scaler, block_width * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
2008-07-18 10:35:32 -04:00
latch = 0;
} else {
/* a space */
latch = 1;
}
i += block_width;
} while (i < 11 + comp_offset);
draw_bar(pixelbuf, (46 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (48 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
2008-07-18 10:35:32 -04:00
latch = 1;
i = 85 + comp_offset;
do {
block_width = 0;
do {
block_width++;
} while (module_is_set(symbol, symbol->rows - 1, i + block_width) == module_is_set(symbol, symbol->rows - 1, i));
2008-07-18 10:35:32 -04:00
if(latch == 1) {
/* a bar */
draw_bar(pixelbuf, (i + xoffset - comp_offset) * scaler, block_width * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
2008-07-18 10:35:32 -04:00
latch = 0;
} else {
/* a space */
latch = 1;
2008-07-13 17:15:55 -04:00
}
2008-07-18 10:35:32 -04:00
i += block_width;
} while (i < 96 + comp_offset);
textpart[0] = symbol->text[0];
textpart[1] = '\0';
textpos = scaler * (-5 + xoffset);
2009-02-19 14:09:57 -05:00
draw_string(pixelbuf, textpart, textpos, default_text_posn, image_width, image_height);
2008-07-18 10:35:32 -04:00
for(i = 0; i < 5; i++) {
textpart[i] = symbol->text[i + 1];
}
textpart[5] = '\0';
textpos = scaler * (27 + xoffset);
2009-02-19 14:09:57 -05:00
draw_string(pixelbuf, textpart, textpos, default_text_posn, image_width, image_height);
2008-07-18 10:35:32 -04:00
for(i = 0; i < 5; i++) {
textpart[i] = symbol->text[i + 6];
}
textpart[6] = '\0';
textpos = scaler * (68 + xoffset);
2009-02-19 14:09:57 -05:00
draw_string(pixelbuf, textpart, textpos, default_text_posn, image_width, image_height);
2008-07-18 10:35:32 -04:00
textpart[0] = symbol->text[11];
textpart[1] = '\0';
textpos = scaler * (100 + xoffset);
2009-02-19 14:09:57 -05:00
draw_string(pixelbuf, textpart, textpos, default_text_posn, image_width, image_height);
2008-07-18 10:35:32 -04:00
textdone = 1;
switch(strlen(addon)) {
case 2:
2009-07-08 05:13:19 -04:00
textpos = scaler * (xoffset + 116);
draw_string(pixelbuf, addon, textpos, image_height - (addon_text_posn * scaler) - 13, image_width, image_height);
2008-07-18 10:35:32 -04:00
break;
case 5:
2009-07-08 05:13:19 -04:00
textpos = scaler * (xoffset + 130);
draw_string(pixelbuf, addon, textpos, image_height - (addon_text_posn * scaler) - 13, image_width, image_height);
2008-07-18 10:35:32 -04:00
break;
2008-07-13 17:15:55 -04:00
}
2008-07-18 10:35:32 -04:00
}
if (((symbol->symbology == BARCODE_UPCE) && (symbol->rows == 1)) || (symbol->symbology == BARCODE_UPCE_CC)) {
/* guard bar extensions and text formatting for UPCE */
draw_bar(pixelbuf, (0 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (2 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (46 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (48 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
draw_bar(pixelbuf, (50 + xoffset) * scaler, 1 * scaler, (4 + (int)yoffset) * scaler, 5 * scaler, image_width, image_height);
2008-07-18 10:35:32 -04:00
textpart[0] = symbol->text[0];
textpart[1] = '\0';
textpos = scaler * (-5 + xoffset);
2009-02-19 14:09:57 -05:00
draw_string(pixelbuf, textpart, textpos, default_text_posn, image_width, image_height);
2008-07-18 10:35:32 -04:00
for(i = 0; i < 6; i++) {
textpart[i] = symbol->text[i + 1];
}
textpart[6] = '\0';
textpos = scaler * (24 + xoffset);
2009-02-19 14:09:57 -05:00
draw_string(pixelbuf, textpart, textpos, default_text_posn, image_width, image_height);
2008-07-18 10:35:32 -04:00
textpart[0] = symbol->text[7];
textpart[1] = '\0';
textpos = scaler * (55 + xoffset);
2009-02-19 14:09:57 -05:00
draw_string(pixelbuf, textpart, textpos, default_text_posn, image_width, image_height);
2008-07-18 10:35:32 -04:00
textdone = 1;
switch(strlen(addon)) {
case 2:
2009-07-08 05:13:19 -04:00
textpos = scaler * (xoffset + 70);
draw_string(pixelbuf, addon, textpos, image_height - (addon_text_posn * scaler) - 13, image_width, image_height);
2008-07-18 10:35:32 -04:00
break;
case 5:
2009-07-08 05:13:19 -04:00
textpos = scaler * (xoffset + 84);
draw_string(pixelbuf, addon, textpos, image_height - (addon_text_posn * scaler) - 13, image_width, image_height);
2008-07-18 10:35:32 -04:00
break;
}
2008-07-13 17:15:55 -04:00
2008-07-18 10:35:32 -04:00
}
2008-07-13 17:15:55 -04:00
2008-07-18 10:35:32 -04:00
xoffset -= comp_offset;
/* Put boundary bars or box around symbol */
2008-12-21 07:17:14 -05:00
if(((symbol->output_options & BARCODE_BOX) != 0) || ((symbol->output_options & BARCODE_BIND) != 0)) {
2009-01-31 17:03:46 -05:00
if((symbol->symbology != BARCODE_CODABLOCKF) && (symbol->symbology != BARCODE_HIBC_BLOCKF)) {
2008-09-16 03:45:03 -04:00
/* boundary bars */
draw_bar(pixelbuf, 0, (symbol->width + xoffset + xoffset) * scaler, textoffset * scaler, symbol->border_width * scaler, image_width, image_height);
draw_bar(pixelbuf, 0, (symbol->width + xoffset + xoffset) * scaler, (textoffset + symbol->height + symbol->border_width) * scaler, symbol->border_width * scaler, image_width, image_height);
2009-05-16 16:23:53 -04:00
if((symbol->output_options & BARCODE_BIND) != 0) {
if((symbol->rows > 1) && (is_stackable(symbol->symbology) == 1)) {
/* row binding */
for(r = 1; r < symbol->rows; r++) {
draw_bar(pixelbuf, xoffset * scaler, symbol->width * scaler, ((r * row_height) + textoffset + yoffset - 1) * scaler, 2 * scaler, image_width, image_height);
}
2008-09-16 03:45:03 -04:00
}
}
} else {
/* boundary bars */
draw_bar(pixelbuf, xoffset * scaler, symbol->width * scaler, textoffset * scaler, symbol->border_width * scaler, image_width, image_height);
draw_bar(pixelbuf, xoffset * scaler, symbol->width * scaler, (textoffset + symbol->height + symbol->border_width) * scaler, symbol->border_width * scaler, image_width, image_height);
2008-09-16 03:45:03 -04:00
if(symbol->rows > 1) {
/* row binding */
for(r = 1; r < symbol->rows; r++) {
draw_bar(pixelbuf, (xoffset + 11) * scaler, (symbol->width - 24) * scaler, ((r * row_height) + textoffset + yoffset - 1) * scaler, 2 * scaler, image_width, image_height);
2008-09-16 03:45:03 -04:00
}
2008-07-18 10:35:32 -04:00
}
}
}
2008-12-21 07:17:14 -05:00
if((symbol->output_options & BARCODE_BOX) != 0) {
2008-07-18 10:35:32 -04:00
/* side bars */
draw_bar(pixelbuf, 0, symbol->border_width * scaler, textoffset * scaler, (symbol->height + (2 * symbol->border_width)) * scaler, image_width, image_height);
draw_bar(pixelbuf, (symbol->width + xoffset + xoffset - symbol->border_width) * scaler, symbol->border_width * scaler, textoffset * scaler, (symbol->height + (2 * symbol->border_width)) * scaler, image_width, image_height);
2008-07-18 10:35:32 -04:00
}
/* Put the human readable text at the bottom */
2009-02-19 14:09:57 -05:00
if((textdone == 0) && (ustrlen(local_text) != 0)) {
2008-07-18 10:35:32 -04:00
textpos = (image_width / 2);
2009-02-19 14:09:57 -05:00
draw_string(pixelbuf, (char*)local_text, textpos, default_text_posn, image_width, image_height);
2008-07-18 10:35:32 -04:00
}
2008-09-27 17:15:38 -04:00
2009-11-08 16:24:32 -05:00
error_number=png_to_file(symbol, image_height, image_width, pixelbuf, rotate_angle, data_type);
2008-09-27 17:15:38 -04:00
free(pixelbuf);
2008-09-28 07:06:11 -04:00
return error_number;
2008-09-02 15:46:34 -04:00
}
2009-11-09 04:18:08 -05:00
#ifndef NO_PNG
2008-09-02 15:46:34 -04:00
int png_handle(struct zint_symbol *symbol, int rotate_angle)
{
int error;
if(symbol->symbology == BARCODE_MAXICODE) {
2009-11-08 16:24:32 -05:00
error = maxi_png_plot(symbol, rotate_angle, PNG_DATA);
} else {
error = png_plot(symbol, rotate_angle, PNG_DATA);
}
return error;
}
2009-11-09 04:18:08 -05:00
#endif /* NO_PNG */
2009-11-08 16:24:32 -05:00
int bmp_handle(struct zint_symbol *symbol, int rotate_angle)
{
int error;
if(symbol->symbology == BARCODE_MAXICODE) {
error = maxi_png_plot(symbol, rotate_angle, BMP_DATA);
2008-09-02 15:46:34 -04:00
} else {
2009-11-08 16:24:32 -05:00
error = png_plot(symbol, rotate_angle, BMP_DATA);
2008-09-02 15:46:34 -04:00
}
return error;
2008-09-27 17:15:38 -04:00
}
2009-11-08 16:24:32 -05:00