aboutsummaryrefslogtreecommitdiffstats
path: root/src/png.c
blob: 0944f1837b0c53946de57e030905424241ac45e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/**
 * scrotty — Screenshot program for Linux's TTY
 * 
 * Copyright © 2014, 2015  Mattias Andrée (maandree@member.fsf.org)
 * 
 * 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, see <http://www.gnu.org/licenses/>.
 */
#include "common.h"
#include "png.h"

#ifdef __GNUC__
# pragma GCC diagnostic ignored "-Wpadded"
#endif
#include <png.h>


/*
 * Rationale:
 * 
 *   Users want their files in PNG (most often), not PNM.
 *   Calling an external program for conversion poses
 *   potential security risks, and is slower.
 */


/**
 * Convert an image from PNM to PNG.
 * 
 * This is a very limited conversion implementation.
 * It is not generally reusable. It makes assumptions
 * that are true only necessarily for this program.
 * 
 * @param   fdin   The file descriptor for the image to convert (PNM).
 * @param   fdout  The file descriptor for the output image (PNG).
 * @return         Zero on success, -1 on error.
 */
int
convert (int fdin, int fdout)
{
#define SCAN(...)  do { if (fscanf(in, __VA_ARGS__) != 1)  goto fail; } while (0)

  FILE *in = NULL;
  FILE *out = NULL;
  long height, width, width3;
  long y, x, r, g, b;
  png_byte   *pixbuf = 0;
  png_struct *pngbuf = NULL;
  png_info   *pnginfo = NULL;
  int saved_errno = 0, rc, c;
  
  /* Get a FILE * for the input, we want to use fscanf, there is no dscanf. */
  in = fdopen (fdin, "r");
  if (in == NULL)
    goto fail;
  /* Get a FILE * for the output, libpng wants a FILE *, not a file descriptor. */
  out = fdopen (fdout, "w");
  if (out == NULL)
    goto fail;
  
  /* Read head. */
  do c = fgetc(in); while ((c != '\n') && (c != EOF));
  SCAN ("%li ", &width);
  SCAN ("%li\n", &height);
  do c = fgetc(in); while ((c != '\n') && (c != EOF));
  
  /* Allocte structures for the PNG. */
  width3 = width * 3;
  pixbuf = malloc ((size_t)width3 * sizeof (png_byte));
  if (pixbuf == NULL)
    goto fail;
  pngbuf = png_create_write_struct (png_get_libpng_ver (NULL), NULL, NULL, NULL);
  if (pngbuf == NULL)
    goto fail;
  pnginfo = png_create_info_struct (pngbuf);
  if (pnginfo == NULL)
    goto fail;
  
  /* Initialise PNG write, and write head. */
  if (setjmp (png_jmpbuf(pngbuf))) /* Failing libpng calls jump here. */
    goto fail;
  png_init_io (pngbuf, out);
  png_set_IHDR (pngbuf, pnginfo, (png_uint_32)width, (png_uint_32)height,
		8 /* bit depth */, PNG_COLOR_TYPE_RGB, PNG_INTERLACE_NONE,
		PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
  png_write_info (pngbuf, pnginfo);
  
  /* Read and convert body. */
  for (y = 0; y < height; y++)
    {
      for (x = 0; x < width3; x += 3)
	{
	  SCAN ("%li\n", &r);
	  SCAN ("%li\n", &g);
	  SCAN ("%li\n", &b);
	  pixbuf[x + 0] = (png_byte)r;
	  pixbuf[x + 1] = (png_byte)g;
	  pixbuf[x + 2] = (png_byte)b;
	}
      png_write_row (pngbuf, pixbuf);
    }
  png_write_end (pngbuf, pnginfo);
  
  rc = 0;
  goto cleanup;
 fail:
  saved_errno = errno;
  rc = -1;
  goto cleanup;
  
 cleanup: 
  png_destroy_write_struct (&pngbuf, (pnginfo ? &pnginfo : NULL));
  if (in != NULL)
    fclose (in);
  if (out != NULL)
    fclose (out);
  free (pixbuf);
  return errno = saved_errno, rc;
}