summaryrefslogtreecommitdiff
path: root/graphics/fly/patches/patch-ab
blob: 69d528a77a8603336d78dd4c914e6a7fa490d15d (plain)
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
$NetBSD: patch-ab,v 1.1 1999/08/27 10:11:02 agc Exp $

Changes for gd-1.6.3 package (GIF -> PNG)

--- fly.c	1999/08/27 09:16:41	1.1
+++ fly.c	1999/08/27 09:17:03
@@ -661,7 +661,7 @@
 			}
 			else
 			{
-				brush = gdImageCreateFromGif(brushfile);
+				brush = gdImageCreateFromPng(brushfile);
 				gdImageSetBrush(img,brush);
 				brush_on = 1;
 				if (!quiet) fprintf(verbose_out,"## Brush Set ## to: %s\n",s);
@@ -703,7 +703,7 @@
 			}
 			else
 			{
-				tile = gdImageCreateFromGif(tilefile);
+				tile = gdImageCreateFromPng(tilefile);
 				gdImageSetTile(img,tile);
 				tile_on = TRUE;
 				if (!quiet) fprintf(verbose_out,"## Tile Set ## to: %s\n",s);
@@ -767,7 +767,7 @@
 			break;
 
 		case END:
-			gdImageGif(img,outfile);
+			gdImagePng(img,outfile);
 			fclose(outfile);
 			gdImageDestroy(img);
 			written_out = TRUE;
@@ -788,7 +788,7 @@
 
 	/*  Write the gd to the GIF output file and exit */
 FINISH:	if(!written_out && img) {
-		gdImageGif(img,outfile);
+		gdImagePng(img,outfile);
 		fclose(outfile);
 		gdImageDestroy(img);
 	}
@@ -1202,7 +1202,7 @@
 			filename);
 		exit(1);
 	}
-	img_file = gdImageCreateFromGif(img_to_copy);
+	img_file = gdImageCreateFromPng(img_to_copy);
 	fclose(img_to_copy);
 
 	if( resize == 1 )
@@ -1357,7 +1357,7 @@
 		else {
 			if(!quiet) fprintf(verbose_out,"Creating image from existing gif <%s>\n",
 			    filename);
-			image = gdImageCreateFromGif(in);
+			image = gdImageCreateFromPng(in);
 			fclose(in);
 		}
 	}