forked from ghewgill/xearth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjpeg.c
83 lines (71 loc) · 1.96 KB
/
jpeg.c
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
/*
* jpeg.c
* greg hewgill
* august 2009
*
* Copyright (C) 1989, 1990, 1993-1995, 1999 Kirk Lauritz Johnson
*
* Parts of the source code (as marked) are:
* Copyright (C) 1989, 1990, 1991 by Jim Frost
* Copyright (C) 1992 by Jamie Zawinski <[email protected]>
*
* Permission to use, copy, modify and freely distribute xearth for
* non-commercial and not-for-profit purposes is hereby granted
* without fee, provided that both the above copyright notice and this
* permission notice appear in all copies and in supporting
* documentation.
*
* The author makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*
* THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT
* OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "xearth.h"
#include <gd.h>
static void jpeg_setup _P ((void));
static int jpeg_row _P ((u_char *));
static void jpeg_cleanup _P ((FILE *));
static gdImagePtr img;
static int y;
void
jpeg_output ()
{
compute_positions ();
scan_map ();
do_dots ();
jpeg_setup ();
render (jpeg_row);
jpeg_cleanup (stdout);
}
static void
jpeg_setup ()
{
img = gdImageCreateTrueColor (wdth, hght);
y = 0;
}
static int
jpeg_row (row)
u_char *row;
{
int i;
for (i = 0; i < wdth; i++)
gdImageSetPixel (img, i, y,
gdTrueColor (row[i * 3 + 0], row[i * 3 + 1],
row[i * 3 + 2]));
y += 1;
return 0;
}
static void
jpeg_cleanup (s)
FILE *s;
{
gdImageJpeg (img, s, 90);
gdImageDestroy (img);
}