libgd.c
上传用户:qdrechuli
上传日期:2022-08-01
资源大小:917k
文件大小:62k
源码类别:

视频捕捉/采集

开发平台:

Visual C++

  1. #include <math.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. #include "io.h"
  5. #include "gd.h"
  6. #include "mtables.h"
  7. #define TRUE 1
  8. #define FALSE 0
  9. static void gdImageBrushApply(gdImagePtr im, int x, int y);
  10. static void gdImageTileApply(gdImagePtr im, int x, int y);
  11. gdImagePtr gdImageCreate(int sx, int sy)
  12. {
  13. int i;
  14. gdImagePtr im;
  15. im = (gdImage *) malloc(sizeof(gdImage));
  16. im->pixels = (unsigned char **) malloc(sizeof(unsigned char *) * sx);
  17. im->polyInts = 0;
  18. im->polyAllocated = 0;
  19. im->brush = 0;
  20. im->tile = 0;
  21. im->style = 0;
  22. for (i=0; (i<sx); i++) {
  23. im->pixels[i] = (unsigned char *) calloc(
  24. sy, sizeof(unsigned char));
  25. }
  26. /* make sure that the colors are zeroed out */
  27. for (i=0; i < gdMaxColors; i++) {
  28.   im->red[i]=0;
  29.   im->green[i]=0;
  30.   im->blue[i]=0;
  31. }
  32. im->sx = sx;
  33. im->sy = sy;
  34. im->colorsTotal = 0;
  35. im->transparent = (-1);
  36. im->interlace = 0;
  37. return im;
  38. }
  39. void gdImageDestroy(gdImagePtr im)
  40. {
  41. int i;
  42. if (im == NULL) return;
  43. for (i=0; (i<im->sx); i++) {
  44.     free(im->pixels[i]);
  45. }
  46. free(im->pixels);
  47. if (im->polyInts) {
  48. free(im->polyInts);
  49. }
  50. if (im->style) {
  51. free(im->style);
  52. }
  53. free(im);
  54. }
  55. int gdImageColorClosest(gdImagePtr im, int r, int g, int b)
  56. {
  57. int i;
  58. long rd, gd, bd;
  59. int ct = (-1);
  60. long mindist = 0;
  61. for (i=0; (i<(im->colorsTotal)); i++) {
  62. long dist;
  63. if (im->open[i]) {
  64. continue;
  65. }
  66. rd = (im->red[i] - r);
  67. gd = (im->green[i] - g);
  68. bd = (im->blue[i] - b);
  69. dist = rd * rd + gd * gd + bd * bd;
  70. if ((i == 0) || (dist < mindist)) {
  71. mindist = dist;
  72. ct = i;
  73. }
  74. }
  75. return ct;
  76. }
  77. int gdImageColorExact(gdImagePtr im, int r, int g, int b)
  78. {
  79. int i;
  80. for (i=0; (i<(im->colorsTotal)); i++) {
  81. if (im->open[i]) {
  82. continue;
  83. }
  84. if ((im->red[i] == r) && 
  85. (im->green[i] == g) &&
  86. (im->blue[i] == b)) {
  87. return i;
  88. }
  89. }
  90. return -1;
  91. }
  92. int gdImageColorAllocate(gdImagePtr im, int r, int g, int b)
  93. {
  94. int i;
  95. int ct = (-1);
  96. for (i=0; (i<(im->colorsTotal)); i++) {
  97. if (im->open[i]) {
  98. ct = i;
  99. break;
  100. }
  101. }
  102. if (ct == (-1)) {
  103. ct = im->colorsTotal;
  104. if (ct == gdMaxColors) {
  105. return -1;
  106. }
  107. im->colorsTotal++;
  108. }
  109. im->red[ct] = r;
  110. im->green[ct] = g;
  111. im->blue[ct] = b;
  112. im->open[ct] = 0;
  113. return ct;
  114. }
  115. void gdImageColorDeallocate(gdImagePtr im, int color)
  116. {
  117. /* Mark it open. */
  118. im->open[color] = 1;
  119. }
  120. void gdImageColorTransparent(gdImagePtr im, int color)
  121. {
  122. im->transparent = color;
  123. }
  124. void gdImageSetPixel(gdImagePtr im, int x, int y, int color)
  125. {
  126. int p;
  127. switch(color) {
  128. case gdStyled:
  129. if (!im->style) {
  130. /* Refuse to draw if no style is set. */
  131. return;
  132. } else {
  133. p = im->style[im->stylePos++];
  134. }
  135. if (p != (gdTransparent)) {
  136. gdImageSetPixel(im, x, y, p);
  137. }
  138. im->stylePos = im->stylePos %  im->styleLength;
  139. break;
  140. case gdStyledBrushed:
  141. if (!im->style) {
  142. /* Refuse to draw if no style is set. */
  143. return;
  144. }
  145. p = im->style[im->stylePos++];
  146. if ((p != gdTransparent) && (p != 0)) {
  147. gdImageSetPixel(im, x, y, gdBrushed);
  148. }
  149. im->stylePos = im->stylePos %  im->styleLength;
  150. break;
  151. case gdBrushed:
  152. gdImageBrushApply(im, x, y);
  153. break;
  154. case gdTiled:
  155. gdImageTileApply(im, x, y);
  156. break;
  157. default:
  158. if (gdImageBoundsSafe(im, x, y)) {
  159.  im->pixels[x][y] = color;
  160. }
  161. break;
  162. }
  163. }
  164. static void gdImageBrushApply(gdImagePtr im, int x, int y)
  165. {
  166. int lx, ly;
  167. int hy;
  168. int hx;
  169. int x1, y1, x2, y2;
  170. int srcx, srcy;
  171. if (!im->brush) {
  172. return;
  173. }
  174. hy = gdImageSY(im->brush)/2;
  175. y1 = y - hy;
  176. y2 = y1 + gdImageSY(im->brush);
  177. hx = gdImageSX(im->brush)/2;
  178. x1 = x - hx;
  179. x2 = x1 + gdImageSX(im->brush);
  180. srcy = 0;
  181. for (ly = y1; (ly < y2); ly++) {
  182. srcx = 0;
  183. for (lx = x1; (lx < x2); lx++) {
  184. int p;
  185. p = gdImageGetPixel(im->brush, srcx, srcy);
  186. /* Allow for non-square brushes! */
  187. if (p != gdImageGetTransparent(im->brush)) {
  188. gdImageSetPixel(im, lx, ly,
  189. im->brushColorMap[p]);
  190. }
  191. srcx++;
  192. }
  193. srcy++;
  194. }
  195. }
  196. static void gdImageTileApply(gdImagePtr im, int x, int y)
  197. {
  198. int srcx, srcy;
  199. int p;
  200. if (!im->tile) {
  201. return;
  202. }
  203. srcx = x % gdImageSX(im->tile);
  204. srcy = y % gdImageSY(im->tile);
  205. p = gdImageGetPixel(im->tile, srcx, srcy);
  206. /* Allow for transparency */
  207. if (p != gdImageGetTransparent(im->tile)) {
  208. gdImageSetPixel(im, x, y,
  209. im->tileColorMap[p]);
  210. }
  211. }
  212. int gdImageGetPixel(gdImagePtr im, int x, int y)
  213. {
  214. if (gdImageBoundsSafe(im, x, y)) {
  215. return im->pixels[x][y];
  216. } else {
  217. return 0;
  218. }
  219. }
  220. /* Bresenham as presented in Foley & Van Dam */
  221. void gdImageLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color)
  222. {
  223. int dx, dy, incr1, incr2, d, x, y, xend, yend, xdirflag, ydirflag;
  224. dx = abs(x2-x1);
  225. dy = abs(y2-y1);
  226. if (dy <= dx) {
  227. d = 2*dy - dx;
  228. incr1 = 2*dy;
  229. incr2 = 2 * (dy - dx);
  230. if (x1 > x2) {
  231. x = x2;
  232. y = y2;
  233. ydirflag = (-1);
  234. xend = x1;
  235. } else {
  236. x = x1;
  237. y = y1;
  238. ydirflag = 1;
  239. xend = x2;
  240. }
  241. gdImageSetPixel(im, x, y, color);
  242. if (((y2 - y1) * ydirflag) > 0) {
  243. while (x < xend) {
  244. x++;
  245. if (d <0) {
  246. d+=incr1;
  247. } else {
  248. y++;
  249. d+=incr2;
  250. }
  251. gdImageSetPixel(im, x, y, color);
  252. }
  253. } else {
  254. while (x < xend) {
  255. x++;
  256. if (d <0) {
  257. d+=incr1;
  258. } else {
  259. y--;
  260. d+=incr2;
  261. }
  262. gdImageSetPixel(im, x, y, color);
  263. }
  264. }
  265. } else {
  266. d = 2*dx - dy;
  267. incr1 = 2*dx;
  268. incr2 = 2 * (dx - dy);
  269. if (y1 > y2) {
  270. y = y2;
  271. x = x2;
  272. yend = y1;
  273. xdirflag = (-1);
  274. } else {
  275. y = y1;
  276. x = x1;
  277. yend = y2;
  278. xdirflag = 1;
  279. }
  280. gdImageSetPixel(im, x, y, color);
  281. if (((x2 - x1) * xdirflag) > 0) {
  282. while (y < yend) {
  283. y++;
  284. if (d <0) {
  285. d+=incr1;
  286. } else {
  287. x++;
  288. d+=incr2;
  289. }
  290. gdImageSetPixel(im, x, y, color);
  291. }
  292. } else {
  293. while (y < yend) {
  294. y++;
  295. if (d <0) {
  296. d+=incr1;
  297. } else {
  298. x--;
  299. d+=incr2;
  300. }
  301. gdImageSetPixel(im, x, y, color);
  302. }
  303. }
  304. }
  305. }
  306. /* As above, plus dashing */
  307. #define dashedSet 
  308. dashStep++; 
  309. if (dashStep == gdDashSize) { 
  310. dashStep = 0; 
  311. on = !on; 
  312. if (on) { 
  313. gdImageSetPixel(im, x, y, color); 
  314. }
  315. void gdImageDashedLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color)
  316. {
  317. int dx, dy, incr1, incr2, d, x, y, xend, yend, xdirflag, ydirflag;
  318. int dashStep = 0;
  319. int on = 1;
  320. dx = abs(x2-x1);
  321. dy = abs(y2-y1);
  322. if (dy <= dx) {
  323. d = 2*dy - dx;
  324. incr1 = 2*dy;
  325. incr2 = 2 * (dy - dx);
  326. if (x1 > x2) {
  327. x = x2;
  328. y = y2;
  329. ydirflag = (-1);
  330. xend = x1;
  331. } else {
  332. x = x1;
  333. y = y1;
  334. ydirflag = 1;
  335. xend = x2;
  336. }
  337. dashedSet;
  338. if (((y2 - y1) * ydirflag) > 0) {
  339. while (x < xend) {
  340. x++;
  341. if (d <0) {
  342. d+=incr1;
  343. } else {
  344. y++;
  345. d+=incr2;
  346. }
  347. dashedSet;
  348. }
  349. } else {
  350. while (x < xend) {
  351. x++;
  352. if (d <0) {
  353. d+=incr1;
  354. } else {
  355. y--;
  356. d+=incr2;
  357. }
  358. dashedSet;
  359. }
  360. }
  361. } else {
  362. d = 2*dx - dy;
  363. incr1 = 2*dx;
  364. incr2 = 2 * (dx - dy);
  365. if (y1 > y2) {
  366. y = y2;
  367. x = x2;
  368. yend = y1;
  369. xdirflag = (-1);
  370. } else {
  371. y = y1;
  372. x = x1;
  373. yend = y2;
  374. xdirflag = 1;
  375. }
  376. dashedSet;
  377. if (((x2 - x1) * xdirflag) > 0) {
  378. while (y < yend) {
  379. y++;
  380. if (d <0) {
  381. d+=incr1;
  382. } else {
  383. x++;
  384. d+=incr2;
  385. }
  386. dashedSet;
  387. }
  388. } else {
  389. while (y < yend) {
  390. y++;
  391. if (d <0) {
  392. d+=incr1;
  393. } else {
  394. x--;
  395. d+=incr2;
  396. }
  397. dashedSet;
  398. }
  399. }
  400. }
  401. }
  402. int gdImageBoundsSafe(gdImagePtr im, int x, int y)
  403. {
  404. return (!(((y < 0) || (y >= im->sy)) ||
  405. ((x < 0) || (x >= im->sx))));
  406. }
  407. void gdImageChar(gdImagePtr im, gdFontPtr f, int x, int y, int c, int color)
  408. {
  409. int cx, cy;
  410. int px, py;
  411. int fline;
  412. cx = 0;
  413. cy = 0;
  414. if ((c < f->offset) || (c >= (f->offset + f->nchars))) {
  415. return;
  416. }
  417. fline = (c - f->offset) * f->h * f->w;
  418. for (py = y; (py < (y + f->h)); py++) {
  419. for (px = x; (px < (x + f->w)); px++) {
  420. if (f->data[fline + cy * f->w + cx]) {
  421. gdImageSetPixel(im, px, py, color);
  422. }
  423. cx++;
  424. }
  425. cx = 0;
  426. cy++;
  427. }
  428. }
  429. void gdImageCharUp(gdImagePtr im, gdFontPtr f, int x, int y, char c, int color)
  430. {
  431. int cx, cy;
  432. int px, py;
  433. int fline;
  434. cx = 0;
  435. cy = 0;
  436. if ((c < f->offset) || (c >= (f->offset + f->nchars))) {
  437. return;
  438. }
  439. fline = (c - f->offset) * f->h * f->w;
  440. for (py = y; (py > (y - f->w)); py--) {
  441. for (px = x; (px < (x + f->h)); px++) {
  442. if (f->data[fline + cy * f->w + cx]) {
  443. gdImageSetPixel(im, px, py, color);
  444. }
  445. cy++;
  446. }
  447. cy = 0;
  448. cx++;
  449. }
  450. }
  451. void gdImageString(gdImagePtr im, gdFontPtr f, int x, int y, char *s, int color)
  452. {
  453. int i;
  454. int l;
  455. l = strlen(s);
  456. for (i=0; (i<l); i++) {
  457. gdImageChar(im, f, x, y, s[i], color);
  458. x += f->w;
  459. }
  460. }
  461. void gdImageStringUp(gdImagePtr im, gdFontPtr f, int x, int y, char *s, int color)
  462. {
  463. int i;
  464. int l;
  465. l = strlen(s);
  466. for (i=0; (i<l); i++) {
  467. gdImageCharUp(im, f, x, y, s[i], color);
  468. y -= f->w;
  469. }
  470. }
  471. /* s and e are integers modulo 360 (degrees), with 0 degrees
  472.   being the rightmost extreme and degrees changing clockwise.
  473.   cx and cy are the center in pixels; w and h are the horizontal 
  474.   and vertical diameter in pixels. Nice interface, but slow, since
  475.   I don't yet use Bresenham (I'm using an inefficient but
  476.   simple solution with too much work going on in it; generalizing
  477.   Bresenham to ellipses and partial arcs of ellipses is non-trivial,
  478.   at least for me) and there are other inefficiencies (small circles
  479.   do far too much work). */
  480. void gdImageArc(gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color)
  481. {
  482. int i;
  483. int lx = 0, ly = 0;
  484. int w2, h2;
  485. w2 = w/2;
  486. h2 = h/2;
  487. while (e < s) {
  488. e += 360;
  489. }
  490. for (i=s; (i <= e); i++) {
  491. int x, y;
  492. x = ((long)cost[i % 360] * (long)w2 / costScale) + cx; 
  493. y = ((long)sint[i % 360] * (long)h2 / sintScale) + cy;
  494. if (i != s) {
  495. gdImageLine(im, lx, ly, x, y, color);
  496. }
  497. lx = x;
  498. ly = y;
  499. }
  500. }
  501. #if 0
  502. /* Bresenham octant code, which I should use eventually */
  503. int x, y, d;
  504. x = 0;
  505. y = w;
  506. d = 3-2*w;
  507. while (x < y) {
  508. gdImageSetPixel(im, cx+x, cy+y, color);
  509. if (d < 0) {
  510. d += 4 * x + 6;
  511. } else {
  512. d += 4 * (x - y) + 10;
  513. y--;
  514. }
  515. x++;
  516. }
  517. if (x == y) {
  518. gdImageSetPixel(im, cx+x, cy+y, color);
  519. }
  520. #endif
  521. void gdImageFillToBorder(gdImagePtr im, int x, int y, int border, int color)
  522. {
  523. int lastBorder;
  524. /* Seek left */
  525. int leftLimit, rightLimit;
  526. int i;
  527. leftLimit = (-1);
  528. if (border < 0) {
  529. /* Refuse to fill to a non-solid border */
  530. return;
  531. }
  532. for (i = x; (i >= 0); i--) {
  533. if (gdImageGetPixel(im, i, y) == border) {
  534. break;
  535. }
  536. gdImageSetPixel(im, i, y, color);
  537. leftLimit = i;
  538. }
  539. if (leftLimit == (-1)) {
  540. return;
  541. }
  542. /* Seek right */
  543. rightLimit = x;
  544. for (i = (x+1); (i < im->sx); i++) {
  545. if (gdImageGetPixel(im, i, y) == border) {
  546. break;
  547. }
  548. gdImageSetPixel(im, i, y, color);
  549. rightLimit = i;
  550. }
  551. /* Look at lines above and below and start paints */
  552. /* Above */
  553. if (y > 0) {
  554. lastBorder = 1;
  555. for (i = leftLimit; (i <= rightLimit); i++) {
  556. int c;
  557. c = gdImageGetPixel(im, i, y-1);
  558. if (lastBorder) {
  559. if ((c != border) && (c != color)) {
  560. gdImageFillToBorder(im, i, y-1, 
  561. border, color);
  562. lastBorder = 0;
  563. }
  564. } else if ((c == border) || (c == color)) {
  565. lastBorder = 1;
  566. }
  567. }
  568. }
  569. /* Below */
  570. if (y < ((im->sy) - 1)) {
  571. lastBorder = 1;
  572. for (i = leftLimit; (i <= rightLimit); i++) {
  573. int c;
  574. c = gdImageGetPixel(im, i, y+1);
  575. if (lastBorder) {
  576. if ((c != border) && (c != color)) {
  577. gdImageFillToBorder(im, i, y+1, 
  578. border, color);
  579. lastBorder = 0;
  580. }
  581. } else if ((c == border) || (c == color)) {
  582. lastBorder = 1;
  583. }
  584. }
  585. }
  586. }
  587. void gdImageFill(gdImagePtr im, int x, int y, int color)
  588. {
  589. int lastBorder;
  590. int old;
  591. int leftLimit, rightLimit;
  592. int i;
  593. old = gdImageGetPixel(im, x, y);
  594. if (color == gdTiled) {
  595. /* Tile fill -- got to watch out! */
  596. int p, tileColor;
  597. int srcx, srcy;
  598. if (!im->tile) {
  599. return;
  600. }
  601. /* Refuse to flood-fill with a transparent pattern --
  602. I can't do it without allocating another image */
  603. if (gdImageGetTransparent(im->tile) != (-1)) {
  604. return;
  605. }
  606. srcx = x % gdImageSX(im->tile);
  607. srcy = y % gdImageSY(im->tile);
  608. p = gdImageGetPixel(im->tile, srcx, srcy);
  609. tileColor = im->tileColorMap[p];
  610. if (old == tileColor) {
  611. /* Nothing to be done */
  612. return;
  613. }
  614. } else {
  615. if (old == color) {
  616. /* Nothing to be done */
  617. return;
  618. }
  619. }
  620. /* Seek left */
  621. leftLimit = (-1);
  622. for (i = x; (i >= 0); i--) {
  623. if (gdImageGetPixel(im, i, y) != old) {
  624. break;
  625. }
  626. gdImageSetPixel(im, i, y, color);
  627. leftLimit = i;
  628. }
  629. if (leftLimit == (-1)) {
  630. return;
  631. }
  632. /* Seek right */
  633. rightLimit = x;
  634. for (i = (x+1); (i < im->sx); i++) {
  635. if (gdImageGetPixel(im, i, y) != old) {
  636. break;
  637. }
  638. gdImageSetPixel(im, i, y, color);
  639. rightLimit = i;
  640. }
  641. /* Look at lines above and below and start paints */
  642. /* Above */
  643. if (y > 0) {
  644. lastBorder = 1;
  645. for (i = leftLimit; (i <= rightLimit); i++) {
  646. int c;
  647. c = gdImageGetPixel(im, i, y-1);
  648. if (lastBorder) {
  649. if (c == old) {
  650. gdImageFill(im, i, y-1, color);
  651. lastBorder = 0;
  652. }
  653. } else if (c != old) {
  654. lastBorder = 1;
  655. }
  656. }
  657. }
  658. /* Below */
  659. if (y < ((im->sy) - 1)) {
  660. lastBorder = 1;
  661. for (i = leftLimit; (i <= rightLimit); i++) {
  662. int c;
  663. c = gdImageGetPixel(im, i, y+1);
  664. if (lastBorder) {
  665. if (c == old) {
  666. gdImageFill(im, i, y+1, color);
  667. lastBorder = 0;
  668. }
  669. } else if (c != old) {
  670. lastBorder = 1;
  671. }
  672. }
  673. }
  674. }
  675. #ifdef TEST_CODE
  676. void gdImageDump(gdImagePtr im)
  677. {
  678. int i, j;
  679. for (i=0; (i < im->sy); i++) {
  680. for (j=0; (j < im->sx); j++) {
  681. printf("%d", im->pixels[j][i]);
  682. }
  683. printf("n");
  684. }
  685. }
  686. #endif
  687. /* Code drawn from ppmtogif.c, from the pbmplus package
  688. **
  689. ** Based on GIFENCOD by David Rowley <mgardi@watdscu.waterloo.edu>. A
  690. ** Lempel-Zim compression based on "compress".
  691. **
  692. ** Modified by Marcel Wijkstra <wijkstra@fwi.uva.nl>
  693. **
  694. ** Copyright (C) 1989 by Jef Poskanzer.
  695. **
  696. ** Permission to use, copy, modify, and distribute this software and its
  697. ** documentation for any purpose and without fee is hereby granted, provided
  698. ** that the above copyright notice appear in all copies and that both that
  699. ** copyright notice and this permission notice appear in supporting
  700. ** documentation.  This software is provided "as is" without express or
  701. ** implied warranty.
  702. **
  703. ** The Graphics Interchange Format(c) is the Copyright property of
  704. ** CompuServe Incorporated.  GIF(sm) is a Service Mark property of
  705. ** CompuServe Incorporated.
  706. */
  707. /*
  708.  * a code_int must be able to hold 2**GIFBITS values of type int, and also -1
  709.  */
  710. typedef int             code_int;
  711. #ifdef SIGNED_COMPARE_SLOW
  712. typedef unsigned long int count_int;
  713. typedef unsigned short int count_short;
  714. #else /*SIGNED_COMPARE_SLOW*/
  715. typedef long int          count_int;
  716. #endif /*SIGNED_COMPARE_SLOW*/
  717. /* this is used for creating GIFs in main memory*/
  718. typedef struct dpStruct {
  719.   void* data;
  720.   int logicalSize;
  721.   int realSize;
  722.   int dataGood;
  723. } dynamicPtr;
  724. static int colorstobpp(int colors);
  725. static void BumpPixel (void);
  726. static int GIFNextPixel (gdImagePtr im);
  727. static void GIFEncode (dynamicPtr *dp, int GWidth, int GHeight, 
  728.        int GInterlace, int Background, int Transparent, int BitsPerPixel, 
  729.        int *Red, int *Green, int *Blue, gdImagePtr im);
  730. static void Putword (int w, dynamicPtr* dp);
  731. static void Putchar(int a, dynamicPtr* dp);
  732. static void compress (int init_bits, dynamicPtr* dp, gdImagePtr im);
  733. static void output (code_int code);
  734. static void cl_block (void);
  735. static void cl_hash (register count_int hsize);
  736. static void char_init (void);
  737. static void char_out (int c);
  738. static void flush_char (void);
  739. /* Allows for reuse */
  740. static void init_statics(void);
  741. /* these functions operate on in-memory dynamic pointers */
  742. static int allocDynamic (dynamicPtr* dp,int initialSize);
  743. static int appendDynamic (dynamicPtr* dp, const void* src, int size);
  744. static int reallocDynamic (dynamicPtr* dp, int required);
  745. static int trimDynamic (dynamicPtr* dp);
  746. static void freeDynamic (dynamicPtr* dp);
  747. static dynamicPtr* gdImageGifData (gdImagePtr im);
  748. /* return data as a dynamic pointer */
  749. static dynamicPtr* gdImageGifData (gdImagePtr im) {
  750.   int interlace, transparent, BitsPerPixel;
  751.   dynamicPtr* dp;
  752.   dp = (dynamicPtr*) malloc(sizeof(dynamicPtr));
  753.   if (dp == NULL) {
  754.     return NULL;
  755.   }
  756.   if (!allocDynamic(dp,1024))
  757.     return NULL;
  758.   interlace = im->interlace;
  759.   transparent = im->transparent;
  760.   BitsPerPixel = colorstobpp(im->colorsTotal);
  761.   /* Clear any old values in statics strewn through the GIF code */
  762.   init_statics();
  763.   /* All set, let's do it. */
  764.   GIFEncode(
  765.     dp, im->sx, im->sy, interlace, 0, transparent, BitsPerPixel,
  766.     im->red, im->green, im->blue, im);
  767.   /* if there were problems along the way, we clean up and return NULL */
  768.   if (dp->dataGood) {
  769.     trimDynamic(dp);
  770.     return dp;
  771.   } else {
  772.     freeDynamic(dp);
  773.     free(dp);
  774.     return NULL;
  775.   }
  776. }
  777. void gdImageGif(gdImagePtr im, FILE *out)
  778. {
  779.   dynamicPtr* dp;
  780.   dp = gdImageGifData(im);
  781.   if (dp == NULL)
  782.     return;
  783.   /* print the file to output */
  784.   fwrite(dp->data,1,dp->logicalSize,out);
  785.   /* get rid of the data -- we're done with it */
  786.   freeDynamic(dp);
  787.   free(dp);
  788. }
  789. void* gdImageGifPtr(gdImagePtr im, int* size) {
  790.   dynamicPtr* dp;
  791.   void* data;
  792.   *size = 0;
  793.   dp = gdImageGifData(im);
  794.   if (dp == NULL)
  795.     return NULL;
  796.   *size = dp->logicalSize;
  797.   data = dp->data;
  798.   free(dp);
  799.   return data;
  800. }
  801. static int
  802. colorstobpp(int colors)
  803. {
  804.     int bpp = 0;
  805.     if ( colors <= 2 )
  806.         bpp = 1;
  807.     else if ( colors <= 4 )
  808.         bpp = 2;
  809.     else if ( colors <= 8 )
  810.         bpp = 3;
  811.     else if ( colors <= 16 )
  812.         bpp = 4;
  813.     else if ( colors <= 32 )
  814.         bpp = 5;
  815.     else if ( colors <= 64 )
  816.         bpp = 6;
  817.     else if ( colors <= 128 )
  818.         bpp = 7;
  819.     else if ( colors <= 256 )
  820.         bpp = 8;
  821.     return bpp;
  822.     }
  823. /*****************************************************************************
  824.  *
  825.  * GIFENCODE.C    - GIF Image compression interface
  826.  *
  827.  * GIFEncode( FName, GHeight, GWidth, GInterlace, Background, Transparent,
  828.  *            BitsPerPixel, Red, Green, Blue, gdImagePtr )
  829.  *
  830.  *****************************************************************************/
  831. static int Width, Height;
  832. static int curx, cury;
  833. static long CountDown;
  834. static int Pass = 0;
  835. static int Interlace;
  836. /*
  837.  * Bump the 'curx' and 'cury' to point to the next pixel
  838.  */
  839. static void
  840. BumpPixel(void)
  841. {
  842.         /*
  843.          * Bump the current X position
  844.          */
  845.         ++curx;
  846.         /*
  847.          * If we are at the end of a scan line, set curx back to the beginning
  848.          * If we are interlaced, bump the cury to the appropriate spot,
  849.          * otherwise, just increment it.
  850.          */
  851.         if( curx == Width ) {
  852.                 curx = 0;
  853.                 if( !Interlace )
  854.                         ++cury;
  855.                 else {
  856.                      switch( Pass ) {
  857.                        case 0:
  858.                           cury += 8;
  859.                           if( cury >= Height ) {
  860.                                 ++Pass;
  861.                                 cury = 4;
  862.                           }
  863.                           break;
  864.                        case 1:
  865.                           cury += 8;
  866.                           if( cury >= Height ) {
  867.                                 ++Pass;
  868.                                 cury = 2;
  869.                           }
  870.                           break;
  871.                        case 2:
  872.                           cury += 4;
  873.                           if( cury >= Height ) {
  874.                              ++Pass;
  875.                              cury = 1;
  876.                           }
  877.                           break;
  878.                        case 3:
  879.                           cury += 2;
  880.                           break;
  881.                         }
  882.                 }
  883.         }
  884. }
  885. /*
  886.  * Return the next pixel from the image
  887.  */
  888. static int
  889. GIFNextPixel(gdImagePtr im)
  890. {
  891.         int r;
  892.         if( CountDown == 0 )
  893.                 return EOF;
  894.         --CountDown;
  895.         r = gdImageGetPixel(im, curx, cury);
  896.         BumpPixel();
  897.         return r;
  898. }
  899. /* public */
  900. static void
  901. GIFEncode(dynamicPtr *dp, int GWidth, int GHeight, 
  902.   int GInterlace, int Background, int Transparent, int BitsPerPixel, 
  903.   int *Red, int *Green, int *Blue, 
  904.   gdImagePtr im)
  905. {
  906.   int B;
  907.   int RWidth, RHeight;
  908.   int LeftOfs, TopOfs;
  909.   int Resolution;
  910.   int ColorMapSize;
  911.   int InitCodeSize;
  912.   int i;
  913.   
  914.   Interlace = GInterlace;
  915.   
  916.   ColorMapSize = 1 << BitsPerPixel;
  917.   
  918.   RWidth = Width = GWidth;
  919.   RHeight = Height = GHeight;
  920.   LeftOfs = TopOfs = 0;
  921.   
  922.   Resolution = BitsPerPixel;
  923.   /*
  924.    * Calculate number of bits we are expecting
  925.    */
  926.   CountDown = (long)Width * (long)Height;
  927.   
  928.   /*
  929.    * Indicate which pass we are on (if interlace)
  930.    */
  931.   Pass = 0;
  932.   
  933.   /*
  934.    * The initial code size
  935.    */
  936.   if( BitsPerPixel <= 1 )
  937.     InitCodeSize = 2;
  938.   else
  939.     InitCodeSize = BitsPerPixel;
  940.   
  941.   /*
  942.    * Set up the current x and y position
  943.    */
  944.   curx = cury = 0;
  945.   
  946.   /*
  947.    * Write the Magic header
  948.    */
  949.   appendDynamic(dp,Transparent < 0 ? "GIF87a" : "GIF89a",6);
  950.   
  951.   /*
  952.    * Write out the screen width and height
  953.    */
  954.   Putword( RWidth, dp );
  955.   Putword( RHeight, dp );
  956.   
  957.   /*
  958.    * Indicate that there is a global colour map
  959.    */
  960.   B = 0x80;       /* Yes, there is a color map */
  961.   
  962.   /*
  963.    * OR in the resolution
  964.    */
  965.   B |= (Resolution - 1) << 5;
  966.   
  967.   /*
  968.    * OR in the Bits per Pixel
  969.    */
  970.   B |= (BitsPerPixel - 1);
  971.   
  972.   /*
  973.    * Write it out
  974.    */
  975.   Putchar( B, dp );
  976.   /*
  977.    * Write out the Background colour
  978.    */
  979.   Putchar ( Background, dp );
  980.   
  981.   /*
  982.    * Byte of 0's (future expansion)
  983.    */
  984.   Putchar( 0, dp );
  985.   /*
  986.    * Write out the Global Colour Map
  987.    */
  988.   for( i=0; i<ColorMapSize; ++i ) {
  989.     Putchar( Red[i], dp );
  990.     Putchar( Green[i], dp );
  991.     Putchar( Blue[i], dp );
  992.   }
  993.   
  994.   /*
  995.    * Write out extension for transparent colour index, if necessary.
  996.    */
  997.   if ( Transparent >= 0 ) {
  998.     Putchar( '!', dp );
  999.     Putchar( 0xf9, dp );
  1000.     Putchar( 4, dp );
  1001.     Putchar( 1, dp );
  1002.     Putchar( 0, dp );
  1003.     Putchar( 0, dp );
  1004.     Putchar( (unsigned char) Transparent, dp );
  1005.     Putchar( 0, dp );
  1006.   }
  1007.   
  1008.   /*
  1009.    * Write an Image separator
  1010.    */
  1011.   Putchar( ',', dp );
  1012.   
  1013.   /*
  1014.    * Write the Image header
  1015.    */
  1016.   
  1017.   Putword( LeftOfs, dp );
  1018.   Putword( TopOfs, dp );
  1019.   Putword( Width, dp );
  1020.   Putword( Height, dp );
  1021.   
  1022.   /*
  1023.    * Write out whether or not the image is interlaced
  1024.    */
  1025.   if( Interlace )
  1026.     Putchar( 0x40, dp );
  1027.   else
  1028.     Putchar( 0x00, dp );
  1029.   
  1030.   /*
  1031.    * Write out the initial code size
  1032.    */
  1033.   Putchar( InitCodeSize, dp );
  1034.   
  1035.   /*
  1036.    * Go and actually compress the data
  1037.    */
  1038.   compress( InitCodeSize+1, dp, im );
  1039.   
  1040.   /*
  1041.    * Write out a Zero-length packet (to end the series)
  1042.    */
  1043.   Putchar( 0, dp );
  1044.   
  1045.   /*
  1046.    * Write the GIF file terminator
  1047.    */
  1048.   Putchar( ';', dp );
  1049. }
  1050. /*
  1051.  * Write out a word to the GIF pointer
  1052.  */
  1053. static void
  1054. Putword(int w, dynamicPtr* dp)
  1055. {
  1056.   Putchar( w & 0xff, dp );
  1057.   Putchar( (w / 256) & 0xff, dp );
  1058. }
  1059. /*
  1060.  * Write out a character to the GIF pointer
  1061.  */
  1062. static void
  1063. Putchar(int a, dynamicPtr* dp)
  1064. {
  1065.   unsigned char b;
  1066.   b = a;
  1067.   appendDynamic(dp,&b,1);
  1068. }
  1069. /***************************************************************************
  1070.  *
  1071.  *  GIFCOMPR.C       - GIF Image compression routines
  1072.  *
  1073.  *  Lempel-Ziv compression based on 'compress'.  GIF modifications by
  1074.  *  David Rowley (mgardi@watdcsu.waterloo.edu)
  1075.  *
  1076.  ***************************************************************************/
  1077. /*
  1078.  * General DEFINEs
  1079.  */
  1080. #define GIFBITS    12
  1081. #define HSIZE  5003            /* 80% occupancy */
  1082. #ifdef NO_UCHAR
  1083.  typedef char   char_type;
  1084. #else /*NO_UCHAR*/
  1085.  typedef        unsigned char   char_type;
  1086. #endif /*NO_UCHAR*/
  1087. /*
  1088.  *
  1089.  * GIF Image compression - modified 'compress'
  1090.  *
  1091.  * Based on: compress.c - File compression ala IEEE Computer, June 1984.
  1092.  *
  1093.  * By Authors:  Spencer W. Thomas       (decvax!harpo!utah-cs!utah-gr!thomas)
  1094.  *              Jim McKie               (decvax!mcvax!jim)
  1095.  *              Steve Davies            (decvax!vax135!petsd!peora!srd)
  1096.  *              Ken Turkowski           (decvax!decwrl!turtlevax!ken)
  1097.  *              James A. Woods          (decvax!ihnp4!ames!jaw)
  1098.  *              Joe Orost               (decvax!vax135!petsd!joe)
  1099.  *
  1100.  */
  1101. #include <ctype.h>
  1102. #define ARGVAL() (*++(*argv) || (--argc && *++argv))
  1103. static int n_bits;                        /* number of bits/code */
  1104. static int maxbits = GIFBITS;                /* user settable max # bits/code */
  1105. static code_int maxcode;                  /* maximum code, given n_bits */
  1106. static code_int maxmaxcode = (code_int)1 << GIFBITS; /* should NEVER generate this code */
  1107. #ifdef COMPATIBLE               /* But wrong! */
  1108. # define MAXCODE(n_bits)        ((code_int) 1 << (n_bits) - 1)
  1109. #else /*COMPATIBLE*/
  1110. # define MAXCODE(n_bits)        (((code_int) 1 << (n_bits)) - 1)
  1111. #endif /*COMPATIBLE*/
  1112. static count_int htab [HSIZE];
  1113. static unsigned short codetab [HSIZE];
  1114. #define HashTabOf(i)       htab[i]
  1115. #define CodeTabOf(i)    codetab[i]
  1116. static code_int hsize = HSIZE;                 /* for dynamic table sizing */
  1117. /*
  1118.  * To save much memory, we overlay the table used by compress() with those
  1119.  * used by decompress().  The tab_prefix table is the same size and type
  1120.  * as the codetab.  The tab_suffix table needs 2**GIFBITS characters.  We
  1121.  * get this from the beginning of htab.  The output stack uses the rest
  1122.  * of htab, and contains characters.  There is plenty of room for any
  1123.  * possible stack (stack used to be 8000 characters).
  1124.  */
  1125. #define tab_prefixof(i) CodeTabOf(i)
  1126. #define tab_suffixof(i)        ((char_type*)(htab))[i]
  1127. #define de_stack               ((char_type*)&tab_suffixof((code_int)1<<GIFBITS))
  1128. static code_int free_ent = 0;                  /* first unused entry */
  1129. /*
  1130.  * block compression parameters -- after all codes are used up,
  1131.  * and compression rate changes, start over.
  1132.  */
  1133. static int clear_flg = 0;
  1134. static int offset;
  1135. static long int in_count = 1;            /* length of input */
  1136. static long int out_count = 0;           /* # of codes output (for debugging) */
  1137. /*
  1138.  * compress stdin to stdout
  1139.  *
  1140.  * Algorithm:  use open addressing double hashing (no chaining) on the
  1141.  * prefix code / next character combination.  We do a variant of Knuth's
  1142.  * algorithm D (vol. 3, sec. 6.4) along with G. Knott's relatively-prime
  1143.  * secondary probe.  Here, the modular division first probe is gives way
  1144.  * to a faster exclusive-or manipulation.  Also do block compression with
  1145.  * an adaptive reset, whereby the code table is cleared when the compression
  1146.  * ratio decreases, but after the table fills.  The variable-length output
  1147.  * codes are re-sized at this point, and a special CLEAR code is generated
  1148.  * for the decompressor.  Late addition:  construct the table according to
  1149.  * file size for noticeable speed improvement on small files.  Please direct
  1150.  * questions about this implementation to ames!jaw.
  1151.  */
  1152. static int g_init_bits;
  1153. static dynamicPtr* g_outptr;
  1154. static int ClearCode;
  1155. static int EOFCode;
  1156. static void
  1157. compress(int init_bits, dynamicPtr* dp, gdImagePtr im)
  1158. {
  1159.     register long fcode;
  1160.     register code_int i /* = 0 */;
  1161.     register int c;
  1162.     register code_int ent;
  1163.     register code_int disp;
  1164.     register code_int hsize_reg;
  1165.     register int hshift;
  1166.     /*
  1167.      * Set up the globals:  g_init_bits - initial number of bits
  1168.      *                      g_outfile   - pointer to output file
  1169.      */
  1170.     g_init_bits = init_bits;
  1171.     g_outptr = dp;
  1172.     /*
  1173.      * Set up the necessary values
  1174.      */
  1175.     offset = 0;
  1176.     out_count = 0;
  1177.     clear_flg = 0;
  1178.     in_count = 1;
  1179.     maxcode = MAXCODE(n_bits = g_init_bits);
  1180.     ClearCode = (1 << (init_bits - 1));
  1181.     EOFCode = ClearCode + 1;
  1182.     free_ent = ClearCode + 2;
  1183.     char_init();
  1184.     ent = GIFNextPixel( im );
  1185.     hshift = 0;
  1186.     for ( fcode = (long) hsize;  fcode < 65536L; fcode *= 2L )
  1187.         ++hshift;
  1188.     hshift = 8 - hshift;                /* set hash code range bound */
  1189.     hsize_reg = hsize;
  1190.     cl_hash( (count_int) hsize_reg);            /* clear hash table */
  1191.     output( (code_int)ClearCode );
  1192. #ifdef SIGNED_COMPARE_SLOW
  1193.     while ( (c = GIFNextPixel( im )) != (unsigned) EOF ) {
  1194. #else /*SIGNED_COMPARE_SLOW*/
  1195.     while ( (c = GIFNextPixel( im )) != EOF ) {  /* } */
  1196. #endif /*SIGNED_COMPARE_SLOW*/
  1197.         ++in_count;
  1198.         fcode = (long) (((long) c << maxbits) + ent);
  1199.         i = (((code_int)c << hshift) ^ ent);    /* xor hashing */
  1200.         if ( HashTabOf (i) == fcode ) {
  1201.             ent = CodeTabOf (i);
  1202.             continue;
  1203.         } else if ( (long)HashTabOf (i) < 0 )      /* empty slot */
  1204.             goto nomatch;
  1205.         disp = hsize_reg - i;           /* secondary hash (after G. Knott) */
  1206.         if ( i == 0 )
  1207.             disp = 1;
  1208. probe:
  1209.         if ( (i -= disp) < 0 )
  1210.             i += hsize_reg;
  1211.         if ( HashTabOf (i) == fcode ) {
  1212.             ent = CodeTabOf (i);
  1213.             continue;
  1214.         }
  1215.         if ( (long)HashTabOf (i) > 0 )
  1216.             goto probe;
  1217. nomatch:
  1218.         output ( (code_int) ent );
  1219.         ++out_count;
  1220.         ent = c;
  1221. #ifdef SIGNED_COMPARE_SLOW
  1222.         if ( (unsigned) free_ent < (unsigned) maxmaxcode) {
  1223. #else /*SIGNED_COMPARE_SLOW*/
  1224.         if ( free_ent < maxmaxcode ) {  /* } */
  1225. #endif /*SIGNED_COMPARE_SLOW*/
  1226.             CodeTabOf (i) = free_ent++; /* code -> hashtable */
  1227.             HashTabOf (i) = fcode;
  1228.         } else
  1229.                 cl_block();
  1230.     }
  1231.     /*
  1232.      * Put out the final code.
  1233.      */
  1234.     output( (code_int)ent );
  1235.     ++out_count;
  1236.     output( (code_int) EOFCode );
  1237. }
  1238. /*****************************************************************
  1239.  * TAG( output )
  1240.  *
  1241.  * Output the given code.
  1242.  * Inputs:
  1243.  *      code:   A n_bits-bit integer.  If == -1, then EOF.  This assumes
  1244.  *              that n_bits =< (long)wordsize - 1.
  1245.  * Outputs:
  1246.  *      Outputs code to the file.
  1247.  * Assumptions:
  1248.  *      Chars are 8 bits long.
  1249.  * Algorithm:
  1250.  *      Maintain a GIFBITS character long buffer (so that 8 codes will
  1251.  * fit in it exactly).  Use the VAX insv instruction to insert each
  1252.  * code in turn.  When the buffer fills up empty it and start over.
  1253.  */
  1254. static unsigned long cur_accum = 0;
  1255. static int cur_bits = 0;
  1256. static unsigned long masks[] = { 0x0000, 0x0001, 0x0003, 0x0007, 0x000F,
  1257.                                   0x001F, 0x003F, 0x007F, 0x00FF,
  1258.                                   0x01FF, 0x03FF, 0x07FF, 0x0FFF,
  1259.                                   0x1FFF, 0x3FFF, 0x7FFF, 0xFFFF };
  1260. static void
  1261. output(code_int code)
  1262. {
  1263.     cur_accum &= masks[ cur_bits ];
  1264.     if( cur_bits > 0 )
  1265.         cur_accum |= ((long)code << cur_bits);
  1266.     else
  1267.         cur_accum = code;
  1268.     cur_bits += n_bits;
  1269.     while( cur_bits >= 8 ) {
  1270.         char_out( (unsigned int)(cur_accum & 0xff) );
  1271.         cur_accum >>= 8;
  1272.         cur_bits -= 8;
  1273.     }
  1274.     /*
  1275.      * If the next entry is going to be too big for the code size,
  1276.      * then increase it, if possible.
  1277.      */
  1278.    if ( free_ent > maxcode || clear_flg ) {
  1279.      if( clear_flg ) {
  1280.        maxcode = MAXCODE (n_bits = g_init_bits);
  1281.        clear_flg = 0;
  1282.        
  1283.      } else {
  1284.        ++n_bits;
  1285.        if ( n_bits == maxbits )
  1286.  maxcode = maxmaxcode;
  1287.        else
  1288.  maxcode = MAXCODE(n_bits);
  1289.      }
  1290.    }
  1291.    if( code == EOFCode ) {
  1292.      /*
  1293.       * At EOF, write the rest of the buffer.
  1294.       */
  1295.      while( cur_bits > 0 ) {
  1296.        char_out( (unsigned int)(cur_accum & 0xff) );
  1297.        cur_accum >>= 8;
  1298.        cur_bits -= 8;
  1299.      }
  1300.      flush_char();
  1301.      if (!g_outptr->dataGood)
  1302.        return;
  1303.    }
  1304. }
  1305. /*
  1306.  * Clear out the hash table
  1307.  */
  1308. static void
  1309. cl_block (void)             /* table clear for block compress */
  1310. {
  1311.         cl_hash ( (count_int) hsize );
  1312.         free_ent = ClearCode + 2;
  1313.         clear_flg = 1;
  1314.         output( (code_int)ClearCode );
  1315. }
  1316. static void
  1317. cl_hash(register count_int hsize)          /* reset code table */
  1318.                          
  1319. {
  1320.         register count_int *htab_p = htab+hsize;
  1321.         register long i;
  1322.         register long m1 = -1;
  1323.         i = hsize - 16;
  1324.         do {                            /* might use Sys V memset(3) here */
  1325.                 *(htab_p-16) = m1;
  1326.                 *(htab_p-15) = m1;
  1327.                 *(htab_p-14) = m1;
  1328.                 *(htab_p-13) = m1;
  1329.                 *(htab_p-12) = m1;
  1330.                 *(htab_p-11) = m1;
  1331.                 *(htab_p-10) = m1;
  1332.                 *(htab_p-9) = m1;
  1333.                 *(htab_p-8) = m1;
  1334.                 *(htab_p-7) = m1;
  1335.                 *(htab_p-6) = m1;
  1336.                 *(htab_p-5) = m1;
  1337.                 *(htab_p-4) = m1;
  1338.                 *(htab_p-3) = m1;
  1339.                 *(htab_p-2) = m1;
  1340.                 *(htab_p-1) = m1;
  1341.                 htab_p -= 16;
  1342.         } while ((i -= 16) >= 0);
  1343.         for ( i += 16; i > 0; --i )
  1344.                 *--htab_p = m1;
  1345. }
  1346. /******************************************************************************
  1347.  *
  1348.  * GIF Specific routines
  1349.  *
  1350.  ******************************************************************************/
  1351. /*
  1352.  * Number of characters so far in this 'packet'
  1353.  */
  1354. static int a_count;
  1355. /*
  1356.  * Set up the 'byte output' routine
  1357.  */
  1358. static void
  1359. char_init(void)
  1360. {
  1361.   a_count = 0;
  1362. }
  1363. /*
  1364.  * Define the storage for the packet accumulator
  1365.  */
  1366. static char accum[ 256 ];
  1367. /*
  1368.  * Add a character to the end of the current packet, and if it is 254
  1369.  * characters, flush the packet to disk.
  1370.  */
  1371. static void
  1372. char_out(int c)
  1373. {
  1374.         accum[ a_count++ ] = c;
  1375.         if( a_count >= 254 )
  1376.                 flush_char();
  1377. }
  1378. /* this is the remnant of the original file-writing code */
  1379. #if 0
  1380. /*
  1381.  * Flush the packet to disk, and reset the accumulator
  1382.  */
  1383. static void
  1384. flush_char(void)
  1385. {
  1386.   if( a_count > 0 ) {
  1387.     fputc( a_count, g_outfile );
  1388.     fwrite( accum, 1, a_count, g_outfile );
  1389.     a_count = 0;
  1390.   }
  1391. }
  1392. #endif
  1393. static void
  1394. flush_char(void)
  1395. {
  1396.   if( a_count > 0 ) {
  1397.     Putchar( a_count, g_outptr );
  1398.     appendDynamic( g_outptr, accum, a_count );
  1399.     a_count = 0;
  1400.   }
  1401. }
  1402. static void init_statics(void) {
  1403. /* Some of these are properly initialized later. What I'm doing
  1404. here is making sure code that depends on C's initialization
  1405. of statics doesn't break when the code gets called more
  1406. than once. */
  1407. Width = 0;
  1408. Height = 0;
  1409. curx = 0;
  1410. cury = 0;
  1411. CountDown = 0;
  1412. Pass = 0;
  1413. Interlace = 0;
  1414. a_count = 0;
  1415. cur_accum = 0;
  1416. cur_bits = 0;
  1417. g_init_bits = 0;
  1418. g_outptr = NULL;
  1419. ClearCode = 0;
  1420. EOFCode = 0;
  1421. free_ent = 0;
  1422. clear_flg = 0;
  1423. offset = 0;
  1424. in_count = 1;
  1425. out_count = 0;
  1426. hsize = HSIZE;
  1427. n_bits = 0;
  1428. maxbits = GIFBITS;
  1429. maxcode = 0;
  1430. maxmaxcode = (code_int)1 << GIFBITS;
  1431. }
  1432. /* +-------------------------------------------------------------------+ */
  1433. /* | Copyright 1990, 1991, 1993, David Koblas.  (koblas@netcom.com)    | */
  1434. /* |   Permission to use, copy, modify, and distribute this software   | */
  1435. /* |   and its documentation for any purpose and without fee is hereby | */
  1436. /* |   granted, provided that the above copyright notice appear in all | */
  1437. /* |   copies and that both that copyright notice and this permission  | */
  1438. /* |   notice appear in supporting documentation.  This software is    | */
  1439. /* |   provided "as is" without express or implied warranty.           | */
  1440. /* +-------------------------------------------------------------------+ */
  1441. #define        MAXCOLORMAPSIZE         256
  1442. #define        TRUE    1
  1443. #define        FALSE   0
  1444. #define CM_RED         0
  1445. #define CM_GREEN       1
  1446. #define CM_BLUE                2
  1447. #define        MAX_LWZ_BITS            12
  1448. #define INTERLACE              0x40
  1449. #define LOCALCOLORMAP  0x80
  1450. #define BitSet(byte, bit)      (((byte) & (bit)) == (bit))
  1451. #define        ReadOK(file,buffer,len) (fread(buffer, len, 1, file) != 0)
  1452. #define LM_to_uint(a,b)                        (((b)<<8)|(a))
  1453. /* We may eventually want to use this information, but def it out for now */
  1454. #if 0
  1455. static struct {
  1456.        unsigned int    Width;
  1457.        unsigned int    Height;
  1458.        unsigned char   ColorMap[3][MAXCOLORMAPSIZE];
  1459.        unsigned int    BitPixel;
  1460.        unsigned int    ColorResolution;
  1461.        unsigned int    Background;
  1462.        unsigned int    AspectRatio;
  1463. } GifScreen;
  1464. #endif
  1465. static struct {
  1466.        int     transparent;
  1467.        int     delayTime;
  1468.        int     inputFlag;
  1469.        int     disposal;
  1470. } Gif89 = { -1, -1, -1, 0 };
  1471. static int ReadColorMap (FILE *fd, int number, unsigned char (*buffer)[256]);
  1472. static int DoExtension (FILE *fd, int label, int *Transparent);
  1473. static int GetDataBlock (FILE *fd, unsigned char *buf);
  1474. static int GetCode (FILE *fd, int code_size, int flag);
  1475. static int LWZReadByte (FILE *fd, int flag, int input_code_size);
  1476. static void ReadImage (gdImagePtr im, FILE *fd, int len, int height, unsigned char (*cmap)[256], int interlace, int ignore);
  1477. int ZeroDataBlock;
  1478. gdImagePtr
  1479. gdImageCreateFromGif(FILE *fd)
  1480. {
  1481.        int imageNumber;
  1482.        int BitPixel;
  1483.        int ColorResolution;
  1484.        int Background;
  1485.        int AspectRatio;
  1486.        int Transparent = (-1);
  1487.        unsigned char   buf[16];
  1488.        unsigned char   c;
  1489.        unsigned char   ColorMap[3][MAXCOLORMAPSIZE];
  1490.        unsigned char   localColorMap[3][MAXCOLORMAPSIZE];
  1491.        int             imw, imh;
  1492.        int             useGlobalColormap;
  1493.        int             bitPixel;
  1494.        int             imageCount = 0;
  1495.        char            version[4];
  1496.        gdImagePtr im = 0;
  1497.        ZeroDataBlock = FALSE;
  1498.        imageNumber = 1;
  1499.        if (! ReadOK(fd,buf,6)) {
  1500. return 0;
  1501. }
  1502.        if (strncmp((char *)buf,"GIF",3) != 0) {
  1503. return 0;
  1504. }
  1505.        strncpy(version, (char *)buf + 3, 3);
  1506.        version[3] = '';
  1507.        if ((strcmp(version, "87a") != 0) && (strcmp(version, "89a") != 0)) {
  1508. return 0;
  1509. }
  1510.        if (! ReadOK(fd,buf,7)) {
  1511. return 0;
  1512. }
  1513.        BitPixel        = 2<<(buf[4]&0x07);
  1514.        ColorResolution = (int) (((buf[4]&0x70)>>3)+1);
  1515.        Background      = buf[5];
  1516.        AspectRatio     = buf[6];
  1517.        if (BitSet(buf[4], LOCALCOLORMAP)) {    /* Global Colormap */
  1518.                if (ReadColorMap(fd, BitPixel, ColorMap)) {
  1519. return 0;
  1520. }
  1521.        }
  1522.        for (;;) {
  1523.                if (! ReadOK(fd,&c,1)) {
  1524.                        return 0;
  1525.                }
  1526.                if (c == ';') {         /* GIF terminator */
  1527.                        int i;
  1528.                        if (imageCount < imageNumber) {
  1529.                                return 0;
  1530.                        }
  1531.                        /* Terminator before any image was declared! */
  1532.                        if (!im) {
  1533.                               return 0;
  1534.                        }
  1535.        /* Check for open colors at the end, so
  1536.                           we can reduce colorsTotal and ultimately
  1537.                           BitsPerPixel */
  1538.                        for (i=((im->colorsTotal-1)); (i>=0); i--) {
  1539.                                if (im->open[i]) {
  1540.                                        im->colorsTotal--;
  1541.                                } else {
  1542.                                        break;
  1543.                                }
  1544.                        } 
  1545.                        return im;
  1546.                }
  1547.                if (c == '!') {         /* Extension */
  1548.                        if (! ReadOK(fd,&c,1)) {
  1549.                                return 0;
  1550.                        }
  1551.                        DoExtension(fd, c, &Transparent);
  1552.                        continue;
  1553.                }
  1554.                if (c != ',') {         /* Not a valid start character */
  1555.                        continue;
  1556.                }
  1557.                ++imageCount;
  1558.                if (! ReadOK(fd,buf,9)) {
  1559.                return 0;
  1560.                }
  1561.                useGlobalColormap = ! BitSet(buf[8], LOCALCOLORMAP);
  1562.                bitPixel = 1<<((buf[8]&0x07)+1);
  1563.                imw = LM_to_uint(buf[4],buf[5]);
  1564.                imh = LM_to_uint(buf[6],buf[7]);
  1565.        if (!(im = gdImageCreate(imw, imh))) {
  1566.  return 0;
  1567.        }
  1568.                im->interlace = BitSet(buf[8], INTERLACE);
  1569.                if (! useGlobalColormap) {
  1570.                        if (ReadColorMap(fd, bitPixel, localColorMap)) { 
  1571.                                  return 0;
  1572.                        }
  1573.                        ReadImage(im, fd, imw, imh, localColorMap, 
  1574.                                  BitSet(buf[8], INTERLACE), 
  1575.                                  imageCount != imageNumber);
  1576.                } else {
  1577.                        ReadImage(im, fd, imw, imh,
  1578.                                  ColorMap, 
  1579.                                  BitSet(buf[8], INTERLACE), 
  1580.                                  imageCount != imageNumber);
  1581.                }
  1582.                if (Transparent != (-1)) {
  1583.                        gdImageColorTransparent(im, Transparent);
  1584.                }    
  1585.        }
  1586. }
  1587. static int
  1588. ReadColorMap(FILE *fd, int number, unsigned char (*buffer)[256])
  1589. {
  1590.        int             i;
  1591.        unsigned char   rgb[3];
  1592.        for (i = 0; i < number; ++i) {
  1593.                if (! ReadOK(fd, rgb, sizeof(rgb))) {
  1594.                        return TRUE;
  1595.                }
  1596.                buffer[CM_RED][i] = rgb[0] ;
  1597.                buffer[CM_GREEN][i] = rgb[1] ;
  1598.                buffer[CM_BLUE][i] = rgb[2] ;
  1599.        }
  1600.        return FALSE;
  1601. }
  1602. static int
  1603. DoExtension(FILE *fd, int label, int *Transparent)
  1604. {
  1605.        static unsigned char     buf[256];
  1606.        switch (label) {
  1607.        case 0xf9:              /* Graphic Control Extension */
  1608.                (void) GetDataBlock(fd, (unsigned char*) buf);
  1609.                Gif89.disposal    = (buf[0] >> 2) & 0x7;
  1610.                Gif89.inputFlag   = (buf[0] >> 1) & 0x1;
  1611.                Gif89.delayTime   = LM_to_uint(buf[1],buf[2]);
  1612.                if ((buf[0] & 0x1) != 0)
  1613.                        *Transparent = buf[3];
  1614.                while (GetDataBlock(fd, (unsigned char*) buf) != 0)
  1615.                        ;
  1616.                return FALSE;
  1617.        default:
  1618.                break;
  1619.        }
  1620.        while (GetDataBlock(fd, (unsigned char*) buf) != 0)
  1621.                ;
  1622.        return FALSE;
  1623. }
  1624. static int
  1625. GetDataBlock(FILE *fd, unsigned char *buf)
  1626. {
  1627.        unsigned char   count;
  1628.        if (! ReadOK(fd,&count,1)) {
  1629.                return -1;
  1630.        }
  1631.        ZeroDataBlock = count == 0;
  1632.        if ((count != 0) && (! ReadOK(fd, buf, count))) {
  1633.                return -1;
  1634.        }
  1635.        return count;
  1636. }
  1637. static int
  1638. GetCode(FILE *fd, int code_size, int flag)
  1639. {
  1640.        static unsigned char    buf[280];
  1641.        static int              curbit, lastbit, done, last_byte;
  1642.        int                     i, j, ret;
  1643.        unsigned char           count;
  1644.        if (flag) {
  1645.                curbit = 0;
  1646.                lastbit = 0;
  1647.                done = FALSE;
  1648.                return 0;
  1649.        }
  1650.        if ( (curbit+code_size) >= lastbit) {
  1651.                if (done) {
  1652.                        if (curbit >= lastbit) {
  1653.                                 /* Oh well */
  1654.                        }                        
  1655.                        return -1;
  1656.                }
  1657.                buf[0] = buf[last_byte-2];
  1658.                buf[1] = buf[last_byte-1];
  1659.                if ((count = GetDataBlock(fd, &buf[2])) == 0)
  1660.                        done = TRUE;
  1661.                last_byte = 2 + count;
  1662.                curbit = (curbit - lastbit) + 16;
  1663.                lastbit = (2+count)*8 ;
  1664.        }
  1665.        ret = 0;
  1666.        for (i = curbit, j = 0; j < code_size; ++i, ++j)
  1667.                ret |= ((buf[ i / 8 ] & (1 << (i % 8))) != 0) << j;
  1668.        curbit += code_size;
  1669.        return ret;
  1670. }
  1671. static int
  1672. LWZReadByte(FILE *fd, int flag, int input_code_size)
  1673. {
  1674.        static int      fresh = FALSE;
  1675.        int             code, incode;
  1676.        static int      code_size, set_code_size;
  1677.        static int      max_code, max_code_size;
  1678.        static int      firstcode, oldcode;
  1679.        static int      clear_code, end_code;
  1680.        static int      table[2][(1<< MAX_LWZ_BITS)];
  1681.        static int      stack[(1<<(MAX_LWZ_BITS))*2], *sp;
  1682.        register int    i;
  1683.        if (flag) {
  1684.                set_code_size = input_code_size;
  1685.                code_size = set_code_size+1;
  1686.                clear_code = 1 << set_code_size ;
  1687.                end_code = clear_code + 1;
  1688.                max_code_size = 2*clear_code;
  1689.                max_code = clear_code+2;
  1690.                GetCode(fd, 0, TRUE);
  1691.                
  1692.                fresh = TRUE;
  1693.                for (i = 0; i < clear_code; ++i) {
  1694.                        table[0][i] = 0;
  1695.                        table[1][i] = i;
  1696.                }
  1697.                for (; i < (1<<MAX_LWZ_BITS); ++i)
  1698.                        table[0][i] = table[1][0] = 0;
  1699.                sp = stack;
  1700.                return 0;
  1701.        } else if (fresh) {
  1702.                fresh = FALSE;
  1703.                do {
  1704.                        firstcode = oldcode =
  1705.                                GetCode(fd, code_size, FALSE);
  1706.                } while (firstcode == clear_code);
  1707.                return firstcode;
  1708.        }
  1709.        if (sp > stack)
  1710.                return *--sp;
  1711.        while ((code = GetCode(fd, code_size, FALSE)) >= 0) {
  1712.                if (code == clear_code) {
  1713.                        for (i = 0; i < clear_code; ++i) {
  1714.                                table[0][i] = 0;
  1715.                                table[1][i] = i;
  1716.                        }
  1717.                        for (; i < (1<<MAX_LWZ_BITS); ++i)
  1718.                                table[0][i] = table[1][i] = 0;
  1719.                        code_size = set_code_size+1;
  1720.                        max_code_size = 2*clear_code;
  1721.                        max_code = clear_code+2;
  1722.                        sp = stack;
  1723.                        firstcode = oldcode =
  1724.                                        GetCode(fd, code_size, FALSE);
  1725.                        return firstcode;
  1726.                } else if (code == end_code) {
  1727.                        int             count;
  1728.                        unsigned char   buf[260];
  1729.                        if (ZeroDataBlock)
  1730.                                return -2;
  1731.                        while ((count = GetDataBlock(fd, buf)) > 0)
  1732.                                ;
  1733.                        if (count != 0)
  1734.                        return -2;
  1735.                }
  1736.                incode = code;
  1737.                if (code >= max_code) {
  1738.                        *sp++ = firstcode;
  1739.                        code = oldcode;
  1740.                }
  1741.                while (code >= clear_code) {
  1742.                        *sp++ = table[1][code];
  1743.                        if (code == table[0][code]) {
  1744.                                /* Oh well */
  1745.                        }
  1746.                        code = table[0][code];
  1747.                }
  1748.                *sp++ = firstcode = table[1][code];
  1749.                if ((code = max_code) <(1<<MAX_LWZ_BITS)) {
  1750.                        table[0][code] = oldcode;
  1751.                        table[1][code] = firstcode;
  1752.                        ++max_code;
  1753.                        if ((max_code >= max_code_size) &&
  1754.                                (max_code_size < (1<<MAX_LWZ_BITS))) {
  1755.                                max_code_size *= 2;
  1756.                                ++code_size;
  1757.                        }
  1758.                }
  1759.                oldcode = incode;
  1760.                if (sp > stack)
  1761.                        return *--sp;
  1762.        }
  1763.        return code;
  1764. }
  1765. static void
  1766. ReadImage(gdImagePtr im, FILE *fd, int len, int height, unsigned char (*cmap)[256], int interlace, int ignore)
  1767. {
  1768.        unsigned char   c;      
  1769.        int             v;
  1770.        int             xpos = 0, ypos = 0, pass = 0;
  1771.        int i;
  1772.        /* Stash the color map into the image */
  1773.        for (i=0; (i<gdMaxColors); i++) {
  1774.                im->red[i] = cmap[CM_RED][i];
  1775.                im->green[i] = cmap[CM_GREEN][i];
  1776.                im->blue[i] = cmap[CM_BLUE][i];
  1777.                im->open[i] = 1;
  1778.        }
  1779.        /* Many (perhaps most) of these colors will remain marked open. */
  1780.        im->colorsTotal = gdMaxColors;
  1781.        /*
  1782.        **  Initialize the Compression routines
  1783.        */
  1784.        if (! ReadOK(fd,&c,1)) {
  1785.                return; 
  1786.        }
  1787.        if (LWZReadByte(fd, TRUE, c) < 0) {
  1788.                return;
  1789.        }
  1790.        /*
  1791.        **  If this is an "uninteresting picture" ignore it.
  1792.        */
  1793.        if (ignore) {
  1794.                while (LWZReadByte(fd, FALSE, c) >= 0)
  1795.                        ;
  1796.                return;
  1797.        }
  1798.        while ((v = LWZReadByte(fd,FALSE,c)) >= 0 ) {
  1799.                /* This how we recognize which colors are actually used. */
  1800.                if (im->open[v]) {
  1801.                        im->open[v] = 0;
  1802.                }
  1803.                gdImageSetPixel(im, xpos, ypos, v);
  1804.                ++xpos;
  1805.                if (xpos == len) {
  1806.                        xpos = 0;
  1807.                        if (interlace) {
  1808.                                switch (pass) {
  1809.                                case 0:
  1810.                                case 1:
  1811.                                        ypos += 8; break;
  1812.                                case 2:
  1813.                                        ypos += 4; break;
  1814.                                case 3:
  1815.                                        ypos += 2; break;
  1816.                                }
  1817.                                if (ypos >= height) {
  1818.                                        ++pass;
  1819.                                        switch (pass) {
  1820.                                        case 1:
  1821.                                                ypos = 4; break;
  1822.                                        case 2:
  1823.                                                ypos = 2; break;
  1824.                                        case 3:
  1825.                                                ypos = 1; break;
  1826.                                        default:
  1827.                                                goto fini;
  1828.                                        }
  1829.                                }
  1830.                        } else {
  1831.                                ++ypos;
  1832.                        }
  1833.                }
  1834.                if (ypos >= height)
  1835.                        break;
  1836.        }
  1837. fini:
  1838.        if (LWZReadByte(fd,FALSE,c)>=0) {
  1839.                /* Ignore extra */
  1840.        }
  1841. }
  1842. void gdImageRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color)
  1843. {
  1844. gdImageLine(im, x1, y1, x2, y1, color);
  1845. gdImageLine(im, x1, y2, x2, y2, color);
  1846. gdImageLine(im, x1, y1, x1, y2, color);
  1847. gdImageLine(im, x2, y1, x2, y2, color);
  1848. }
  1849. void gdImageFilledRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color)
  1850. {
  1851. int x, y;
  1852. for (y=y1; (y<=y2); y++) {
  1853. for (x=x1; (x<=x2); x++) {
  1854. gdImageSetPixel(im, x, y, color);
  1855. }
  1856. }
  1857. }
  1858. void gdImageCopy(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h)
  1859. {
  1860. int c;
  1861. int x, y;
  1862. int tox, toy;
  1863. int i;
  1864. int colorMap[gdMaxColors];
  1865. for (i=0; (i<gdMaxColors); i++) {
  1866. colorMap[i] = (-1);
  1867. }
  1868. toy = dstY;
  1869. for (y=srcY; (y < (srcY + h)); y++) {
  1870. tox = dstX;
  1871. for (x=srcX; (x < (srcX + w)); x++) {
  1872. int nc;
  1873. c = gdImageGetPixel(src, x, y);
  1874. /* Added 7/24/95: support transparent copies */
  1875. if (gdImageGetTransparent(src) == c) {
  1876. tox++;
  1877. continue;
  1878. }
  1879. /* Have we established a mapping for this color? */
  1880. if (colorMap[c] == (-1)) {
  1881. /* If it's the same image, mapping is trivial */
  1882. if (dst == src) {
  1883. nc = c;
  1884. } else { 
  1885. /* First look for an exact match */
  1886. nc = gdImageColorExact(dst,
  1887. src->red[c], src->green[c],
  1888. src->blue[c]);
  1889. }
  1890. if (nc == (-1)) {
  1891. /* No, so try to allocate it */
  1892. nc = gdImageColorAllocate(dst,
  1893. src->red[c], src->green[c],
  1894. src->blue[c]);
  1895. /* If we're out of colors, go for the
  1896. closest color */
  1897. if (nc == (-1)) {
  1898. nc = gdImageColorClosest(dst,
  1899. src->red[c], src->green[c],
  1900. src->blue[c]);
  1901. }
  1902. }
  1903. colorMap[c] = nc;
  1904. }
  1905. gdImageSetPixel(dst, tox, toy, colorMap[c]);
  1906. tox++;
  1907. }
  1908. toy++;
  1909. }
  1910. }
  1911. void gdImageCopyResized(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH)
  1912. {
  1913. int c;
  1914. int x, y;
  1915. int tox, toy;
  1916. int ydest;
  1917. int i;
  1918. int colorMap[gdMaxColors];
  1919. /* Stretch vectors */
  1920. int *stx;
  1921. int *sty;
  1922. /* We only need to use floating point to determine the correct
  1923. stretch vector for one line's worth. */
  1924. double accum;
  1925. stx = (int *) malloc(sizeof(int) * srcW);
  1926. sty = (int *) malloc(sizeof(int) * srcH);
  1927. accum = 0;
  1928. for (i=0; (i < srcW); i++) {
  1929. int got;
  1930. accum += (double)dstW/(double)srcW;
  1931. got = floor(accum);
  1932. stx[i] = got;
  1933. accum -= got;
  1934. }
  1935. accum = 0;
  1936. for (i=0; (i < srcH); i++) {
  1937. int got;
  1938. accum += (double)dstH/(double)srcH;
  1939. got = floor(accum);
  1940. sty[i] = got;
  1941. accum -= got;
  1942. }
  1943. for (i=0; (i<gdMaxColors); i++) {
  1944. colorMap[i] = (-1);
  1945. }
  1946. toy = dstY;
  1947. for (y=srcY; (y < (srcY + srcH)); y++) {
  1948. for (ydest=0; (ydest < sty[y-srcY]); ydest++) {
  1949. tox = dstX;
  1950. for (x=srcX; (x < (srcX + srcW)); x++) {
  1951. int nc;
  1952. if (!stx[x - srcX]) {
  1953. continue;
  1954. }
  1955. c = gdImageGetPixel(src, x, y);
  1956. /* Added 7/24/95: support transparent copies */
  1957. if (gdImageGetTransparent(src) == c) {
  1958. tox += stx[x-srcX];
  1959. continue;
  1960. }
  1961. /* Have we established a mapping for this color? */
  1962. if (colorMap[c] == (-1)) {
  1963. /* If it's the same image, mapping is trivial */
  1964. if (dst == src) {
  1965. nc = c;
  1966. } else { 
  1967. /* First look for an exact match */
  1968. nc = gdImageColorExact(dst,
  1969. src->red[c], src->green[c],
  1970. src->blue[c]);
  1971. }
  1972. if (nc == (-1)) {
  1973. /* No, so try to allocate it */
  1974. nc = gdImageColorAllocate(dst,
  1975. src->red[c], src->green[c],
  1976. src->blue[c]);
  1977. /* If we're out of colors, go for the
  1978. closest color */
  1979. if (nc == (-1)) {
  1980. nc = gdImageColorClosest(dst,
  1981. src->red[c], src->green[c],
  1982. src->blue[c]);
  1983. }
  1984. }
  1985. colorMap[c] = nc;
  1986. }
  1987. for (i=0; (i < stx[x - srcX]); i++) {
  1988. gdImageSetPixel(dst, tox, toy, colorMap[c]);
  1989. tox++;
  1990. }
  1991. }
  1992. toy++;
  1993. }
  1994. }
  1995. free(stx);
  1996. free(sty);
  1997. }
  1998. int gdGetWord(int *result, FILE *in)
  1999. {
  2000. int r;
  2001. r = getc(in);
  2002. if (r == EOF) {
  2003. return 0;
  2004. }
  2005. *result = r << 8;
  2006. r = getc(in);
  2007. if (r == EOF) {
  2008. return 0;
  2009. }
  2010. *result += r;
  2011. return 1;
  2012. }
  2013. void gdPutWord(int w, dynamicPtr *dp)
  2014. {
  2015.   Putchar((unsigned char)(w >> 8), dp);
  2016.   Putchar((unsigned char)(w & 0xFF), dp);
  2017. }
  2018. int gdGetByte(int *result, FILE *in)
  2019. {
  2020. int r;
  2021. r = getc(in);
  2022. if (r == EOF) {
  2023. return 0;
  2024. }
  2025. *result = r;
  2026. return 1;
  2027. }
  2028. gdImagePtr gdImageCreateFromGd(FILE *in)
  2029. {
  2030. int sx, sy;
  2031. int x, y;
  2032. int i;
  2033. gdImagePtr im;
  2034. if (!gdGetWord(&sx, in)) {
  2035. goto fail1;
  2036. }
  2037. if (!gdGetWord(&sy, in)) {
  2038. goto fail1;
  2039. }
  2040. im = gdImageCreate(sx, sy);
  2041. if (!gdGetByte(&im->colorsTotal, in)) {
  2042. goto fail2;
  2043. }
  2044. if (!gdGetWord(&im->transparent, in)) {
  2045. goto fail2;
  2046. }
  2047. if (im->transparent == 257) {
  2048. im->transparent = (-1);
  2049. }
  2050. for (i=0; (i<gdMaxColors); i++) {
  2051. if (!gdGetByte(&im->red[i], in)) {
  2052. goto fail2;
  2053. }
  2054. if (!gdGetByte(&im->green[i], in)) {
  2055. goto fail2;
  2056. }
  2057. if (!gdGetByte(&im->blue[i], in)) {
  2058. goto fail2;
  2059. }
  2060. }
  2061. for (y=0; (y<sy); y++) {
  2062. for (x=0; (x<sx); x++) {
  2063. int ch;
  2064. ch = getc(in);
  2065. if (ch == EOF) {
  2066. gdImageDestroy(im);
  2067. return 0;
  2068. }
  2069. im->pixels[x][y] = ch;
  2070. }
  2071. }
  2072. return im;
  2073. fail2:
  2074. gdImageDestroy(im);
  2075. fail1:
  2076. return 0;
  2077. }
  2078. void* gdImageGdPtr(gdImagePtr im, int* size)
  2079. {
  2080.   int x, y;
  2081.   int i;
  2082.   int trans;
  2083.   dynamicPtr* dp;
  2084.   void* data;
  2085.   *size = 0;
  2086.   /* create the dynamic pointer */
  2087.   dp = (dynamicPtr*) malloc(sizeof(dynamicPtr));
  2088.   if (dp == NULL) {
  2089.     return NULL;
  2090.   }
  2091.   if (!allocDynamic(dp,1024))
  2092.     return NULL;
  2093.   gdPutWord(im->sx, dp);
  2094.   gdPutWord(im->sy, dp);
  2095.   Putchar((unsigned char)im->colorsTotal, dp);
  2096.   trans = im->transparent;
  2097.   if (trans == (-1)) {
  2098.     trans = 257;
  2099.   }
  2100.   gdPutWord(trans, dp);
  2101.   for (i=0; (i<gdMaxColors); i++) {
  2102.     Putchar((unsigned char)im->red[i], dp);
  2103.     Putchar((unsigned char)im->green[i], dp);
  2104.     Putchar((unsigned char)im->blue[i], dp);
  2105.   }
  2106.   for (y=0; (y < im->sy); y++) {
  2107.     for (x=0; (x < im->sx); x++) {
  2108.       Putchar((unsigned char)im->pixels[x][y], dp);
  2109.     }
  2110.   }
  2111.   /* clean up the data block and return it */
  2112.   if (dp->dataGood) {
  2113.     trimDynamic(dp);
  2114.     *size = dp->logicalSize;
  2115.     data = dp->data;
  2116.   } else {
  2117.     data = NULL;
  2118.   }
  2119.   free(dp);
  2120.   return data;
  2121. }
  2122. void gdImageGd(gdImagePtr im, FILE *out) {
  2123.   void* data;
  2124.   int size;
  2125.   data = gdImageGdPtr(im,&size);
  2126.   if (data != NULL)
  2127.     fwrite(data,1,size,out);
  2128.   free(data);
  2129. }
  2130. #ifdef USE_SFIO
  2131. #undef fgets
  2132. #define fgets(s,n,f) myfgets(s,n,f) 
  2133. char * myfgets(char *s, int n, FILE *fd)
  2134. {
  2135.   char *p = s;
  2136.   while ((n > 0) && !PerlIO_eof(fd)) {
  2137.     *s =  PerlIO_getc(fd);
  2138.     if ((*s == 'n') || (*s == '')) break;
  2139.     s++;
  2140.   }
  2141.   if (s != p) 
  2142.     return(p);
  2143.   else
  2144.     return NULL;
  2145. }
  2146. #endif
  2147. gdImagePtr
  2148. gdImageCreateFromXbm(FILE *fd)
  2149. {
  2150. gdImagePtr im;
  2151. int bit;
  2152. int w, h;
  2153. int bytes;
  2154. int ch;
  2155. int i, x, y;
  2156. char *sp;
  2157. char s[161];
  2158. if (!fgets(s, 160, fd)) {
  2159. return 0;
  2160. }
  2161. sp = &s[0];
  2162. /* Skip #define */
  2163. sp = strchr(sp, ' ');
  2164. if (!sp) {
  2165. return 0;
  2166. }
  2167. /* Skip width label */
  2168. sp++;
  2169. sp = strchr(sp, ' ');
  2170. if (!sp) {
  2171. return 0;
  2172. }
  2173. /* Get width */
  2174. w = atoi(sp + 1);
  2175. if (!w) {
  2176. return 0;
  2177. }
  2178. if (!fgets(s, 160, fd)) {
  2179. return 0;
  2180. }
  2181. sp = s;
  2182. /* Skip #define */
  2183. sp = strchr(sp, ' ');
  2184. if (!sp) {
  2185. return 0;
  2186. }
  2187. /* Skip height label */
  2188. sp++;
  2189. sp = strchr(sp, ' ');
  2190. if (!sp) {
  2191. return 0;
  2192. }
  2193. /* Get height */
  2194. h = atoi(sp + 1);
  2195. if (!h) {
  2196. return 0;
  2197. }
  2198. /* Skip declaration line */
  2199. if (!fgets(s, 160, fd)) {
  2200. return 0;
  2201. }
  2202. bytes = (w * h / 8) + 1;
  2203. im = gdImageCreate(w, h);
  2204. gdImageColorAllocate(im, 255, 255, 255);
  2205. gdImageColorAllocate(im, 0, 0, 0);
  2206. x = 0;
  2207. y = 0;
  2208. for (i=0; (i < bytes); i++) {
  2209. char h[3];
  2210. int b;
  2211. /* Skip spaces, commas, CRs, 0x */
  2212. while(1) {
  2213. ch = getc(fd);
  2214. if (ch == EOF) {
  2215. goto fail;
  2216. }
  2217. if (ch == 'x') {
  2218. break;
  2219. }
  2220. }
  2221. /* Get hex value */
  2222. ch = getc(fd);
  2223. if (ch == EOF) {
  2224. goto fail;
  2225. }
  2226. h[0] = ch;
  2227. ch = getc(fd);
  2228. if (ch == EOF) {
  2229. goto fail;
  2230. }
  2231. h[1] = ch;
  2232. h[2] = '';
  2233. sscanf(h, "%x", &b);
  2234. for (bit = 1; (bit <= 128); (bit = bit << 1)) {
  2235. gdImageSetPixel(im, x++, y, (b & bit) ? 1 : 0);
  2236. if (x == im->sx) {
  2237. x = 0;
  2238. y++;
  2239. if (y == im->sy) {
  2240. return im;
  2241. }
  2242. /* Fix 8/8/95 */
  2243. break;
  2244. }
  2245. }
  2246. }
  2247. /* Shouldn't happen */
  2248. fprintf(stderr, "Error: bug in gdImageCreateFromXbm!n");
  2249. return 0;
  2250. fail:
  2251. gdImageDestroy(im);
  2252. return 0;
  2253. }
  2254. void gdImagePolygon(gdImagePtr im, gdPointPtr p, int n, int c)
  2255. {
  2256. if (!n) {
  2257. return;
  2258. }
  2259. gdImageLine(im, p->x, p->y, p[n-1].x, p[n-1].y, c);
  2260. gdImageOpenPolygon(im, p, n, c);
  2261. }
  2262. void gdImageOpenPolygon(gdImagePtr im, gdPointPtr p, int n, int c)
  2263. {
  2264. int i;
  2265. int lx, ly;
  2266. if (!n) {
  2267. return;
  2268. }
  2269. lx = p->x;
  2270. ly = p->y;
  2271. for (i=1; (i < n); i++) {
  2272. p++;
  2273. gdImageLine(im, lx, ly, p->x, p->y, c);
  2274. lx = p->x;
  2275. ly = p->y;
  2276. }
  2277. }
  2278. int gdCompareInt(const void *a, const void *b);
  2279. void gdImageFilledPolygon(gdImagePtr im, gdPointPtr p, int n, int c)
  2280. {
  2281. int i;
  2282. int y;
  2283. int y1, y2;
  2284. int ints;
  2285. if (!n) {
  2286. return;
  2287. }
  2288. if (!im->polyAllocated) {
  2289. im->polyInts = (int *) malloc(sizeof(int) * n);
  2290. im->polyAllocated = n;
  2291. }
  2292. if (im->polyAllocated < n) {
  2293. while (im->polyAllocated < n) {
  2294. im->polyAllocated *= 2;
  2295. }
  2296. im->polyInts = (int *) realloc(im->polyInts,
  2297. sizeof(int) * im->polyAllocated);
  2298. }
  2299. y1 = p[0].y;
  2300. y2 = p[0].y;
  2301. for (i=1; (i < n); i++) {
  2302. if (p[i].y > y2) {
  2303. y2 = p[i].y;
  2304. } else if (p[i].y < y1) {
  2305. y1 = p[i].y;
  2306. }
  2307. }
  2308. for (y=y1; (y <= y2); y++) {
  2309. int dirLast = 0;
  2310. ints = 0;
  2311. if (p[0].y == y) {
  2312. i = n;
  2313. while (dirLast == 0 && i--) {
  2314. if (p[i].y > y)
  2315. dirLast = 1;
  2316. else if (p[i].y < y)
  2317. dirLast = -1;
  2318. }
  2319. }
  2320. for (i=0; (i < n); i++) {
  2321. int x1, x2;
  2322. int y1, y2;
  2323. int dir;
  2324. int i2 = i+1;
  2325. if (i2 == n)
  2326. i2 = 0;
  2327. y1 = p[i].y;
  2328. y2 = p[i2].y;
  2329. if (y1 < y2) {
  2330. x1 = p[i].x;
  2331. x2 = p[i2].x;
  2332. dir = -1;
  2333. } else if (y1 > y2) {
  2334. y2 = p[i].y;
  2335. y1 = p[i2].y;
  2336. x2 = p[i].x;
  2337. x1 = p[i2].x;
  2338. dir = 1;
  2339. } else {
  2340. /* Horizontal; just draw it */
  2341. gdImageLine(im, 
  2342. p[i].x, y1, 
  2343. p[i2].x, y1,
  2344. c);
  2345. continue;
  2346. }
  2347. if ((y >= y1) && (y <= y2)) {
  2348. int inter = 
  2349. (y-y1) * (x2-x1) / (y2-y1) + x1;
  2350. /* Only count intersections once
  2351. except at maxima and minima. */
  2352. if ((y == p[i].y) && (dir == dirLast))
  2353. continue;
  2354. im->polyInts[ints++] = inter;
  2355. dirLast = dir;
  2356. }
  2357. }
  2358. qsort(im->polyInts, ints, sizeof(int), gdCompareInt);
  2359. for (i=0; (i < (ints-1)); i+=2) {
  2360. gdImageLine(im, im->polyInts[i], y,
  2361. im->polyInts[i+1], y, c);
  2362. }
  2363. }
  2364. }
  2365. int gdCompareInt(const void *a, const void *b)
  2366. {
  2367. return (*(const int *)a) - (*(const int *)b);
  2368. }
  2369. void gdImageSetStyle(gdImagePtr im, int *style, int noOfPixels)
  2370. {
  2371. if (im->style) {
  2372. free(im->style);
  2373. }
  2374. im->style = (int *) 
  2375. malloc(sizeof(int) * noOfPixels);
  2376. memcpy(im->style, style, sizeof(int) * noOfPixels);
  2377. im->styleLength = noOfPixels;
  2378. im->stylePos = 0;
  2379. }
  2380. void gdImageSetBrush(gdImagePtr im, gdImagePtr brush)
  2381. {
  2382. int i;
  2383. im->brush = brush;
  2384. for (i=0; (i < gdImageColorsTotal(brush)); i++) {
  2385. int index;
  2386. index = gdImageColorExact(im, 
  2387. gdImageRed(brush, i),
  2388. gdImageGreen(brush, i),
  2389. gdImageBlue(brush, i));
  2390. if (index == (-1)) {
  2391. index = gdImageColorAllocate(im,
  2392. gdImageRed(brush, i),
  2393. gdImageGreen(brush, i),
  2394. gdImageBlue(brush, i));
  2395. if (index == (-1)) {
  2396. index = gdImageColorClosest(im,
  2397. gdImageRed(brush, i),
  2398. gdImageGreen(brush, i),
  2399. gdImageBlue(brush, i));
  2400. }
  2401. }
  2402. im->brushColorMap[i] = index;
  2403. }
  2404. }
  2405. void gdImageSetTile(gdImagePtr im, gdImagePtr tile)
  2406. {
  2407. int i;
  2408. im->tile = tile;
  2409. for (i=0; (i < gdImageColorsTotal(tile)); i++) {
  2410. int index;
  2411. index = gdImageColorExact(im, 
  2412. gdImageRed(tile, i),
  2413. gdImageGreen(tile, i),
  2414. gdImageBlue(tile, i));
  2415. if (index == (-1)) {
  2416. index = gdImageColorAllocate(im,
  2417. gdImageRed(tile, i),
  2418. gdImageGreen(tile, i),
  2419. gdImageBlue(tile, i));
  2420. if (index == (-1)) {
  2421. index = gdImageColorClosest(im,
  2422. gdImageRed(tile, i),
  2423. gdImageGreen(tile, i),
  2424. gdImageBlue(tile, i));
  2425. }
  2426. }
  2427. im->tileColorMap[i] = index;
  2428. }
  2429. }
  2430. void gdImageInterlace(gdImagePtr im, int interlaceArg)
  2431. {
  2432. im->interlace = interlaceArg;
  2433. }
  2434. /* *********************************************************************
  2435.  * 
  2436.  * InitDynamic - Return a dynamically resizable void*
  2437.  *
  2438.  * *********************************************************************
  2439.  */
  2440. static int
  2441. allocDynamic (dynamicPtr* dp,int initialSize) {
  2442.   dp->logicalSize = 0;
  2443.   dp->dataGood = FALSE;
  2444.   dp->data = malloc(initialSize);
  2445.   if (dp->data !=NULL) {
  2446.     dp->realSize = initialSize;
  2447.     dp->dataGood = TRUE;
  2448.     return TRUE;
  2449.   } else {
  2450.     dp->realSize = 0;
  2451.     return FALSE;
  2452.   }
  2453. }
  2454. /* append bytes to the end of a dynamic pointer */
  2455. static int
  2456. appendDynamic (dynamicPtr* dp, const void* src, int size) {
  2457.   int bytesNeeded;
  2458.   char* tmp;
  2459.   if (!dp->dataGood) return FALSE;
  2460.   bytesNeeded = dp->logicalSize + size;
  2461.   if (bytesNeeded > dp->realSize) {
  2462.     if (!reallocDynamic(dp,dp->realSize*2)) {
  2463.       dp->dataGood = FALSE;
  2464.       return FALSE;
  2465.     }
  2466.   }
  2467.   /* if we get here, we can be sure that we have enough bytes
  2468.      to copy safely */
  2469.   tmp = (char*)dp->data;
  2470.   memcpy((void*)(tmp+dp->logicalSize),src,size);
  2471.   dp->logicalSize += size;
  2472.   return TRUE;
  2473. }
  2474. /* grow (or shrink) dynamic pointer */
  2475. static int
  2476. reallocDynamic (dynamicPtr* dp, int required) {
  2477.   void* newPtr;
  2478.   /* First try realloc().  If that doesn't work, make a new
  2479.      memory block and copy. */
  2480.   if (newPtr = realloc(dp->data,required)) {
  2481.     dp->realSize = required;
  2482.     dp->data = newPtr;
  2483.     return TRUE;
  2484.   }
  2485.   /* create a new pointer */
  2486.   newPtr = malloc(required);
  2487.   if (!newPtr) {
  2488.     dp->dataGood = FALSE;
  2489.     return FALSE;
  2490.   }
  2491.   /* copy the old data into it */
  2492.   memcpy(newPtr,dp->data,dp->logicalSize);
  2493.   free(dp->data);
  2494.   dp->data = newPtr;
  2495.   dp->realSize = required;
  2496.   return TRUE;
  2497. }
  2498. /* trim pointer so that its real and logical sizes match */
  2499. static int
  2500. trimDynamic (dynamicPtr* dp) {
  2501.   return reallocDynamic(dp,dp->logicalSize);
  2502. }
  2503. /* dispose of the dynamic pointer */
  2504. static void
  2505. freeDynamic (dynamicPtr* dp) {
  2506.   if (dp->data != NULL) {
  2507.     free(dp->data);
  2508.     dp->data = NULL;
  2509.   }
  2510.   dp->realSize=0;
  2511.   dp->logicalSize=0;
  2512. }