Doxygen Source Code Documentation
ungifwrt.c File Reference
#include "gif.h"
#include <stdarg.h>
#include <string.h>
Go to the source code of this file.
Define Documentation
|
Definition at line 48 of file ungifwrt.c. |
|
Definition at line 47 of file ungifwrt.c. |
|
Definition at line 16 of file ungifwrt.c. |
|
Definition at line 25 of file ungifwrt.c. Referenced by real_write_image_data(). |
Typedef Documentation
|
|
|
|
Function Documentation
|
Definition at line 595 of file ungifwrt.c. References gifputblock, and gifputbyte. Referenced by write_comment_extensions(), and write_name_extension().
00596 { 00597 while (len > 0) { 00598 int s = len > 255 ? 255 : len; 00599 gifputbyte(s, grr); 00600 gifputblock(data, s, grr); 00601 data += s; 00602 len -= s; 00603 } 00604 gifputbyte(0, grr); 00605 } |
|
Definition at line 354 of file ungifwrt.c. References Gif_Image::compressed, Gif_Writer::flags, Gif_FullCompressImage(), Gif_UncompressImage, GIF_WRITE_CAREFUL_MIN_CODE_SIZE, Gif_Stream::global, Gif_Image::height, i, Gif_Image::img, Gif_Image::local, Gif_Colormap::ncol, and Gif_Image::width. Referenced by Gif_FullCompressImage(), and write_image().
00355 { 00356 int colors_used = -1, min_code_bits, i; 00357 00358 if (grr->flags & GIF_WRITE_CAREFUL_MIN_CODE_SIZE) { 00359 /* calculate m_c_b based on colormap */ 00360 if (gfi->local && gfi->local->ncol > 0) 00361 colors_used = gfi->local->ncol; 00362 else if (gfs->global && gfs->global->ncol > 0) 00363 colors_used = gfs->global->ncol; 00364 00365 } else if (gfi->compressed) { 00366 /* take m_c_b from compressed image */ 00367 colors_used = 1 << gfi->compressed[0]; 00368 00369 } else if (gfi->img) { 00370 /* calculate m_c_b from uncompressed data */ 00371 int x, y, width = gfi->width, height = gfi->height; 00372 colors_used = 0; 00373 for (y = 0; y < height && colors_used < 128; y++) { 00374 byte *data = gfi->img[y]; 00375 for (x = width; x > 0; x--, data++) 00376 if (*data > colors_used) 00377 colors_used = *data; 00378 } 00379 colors_used++; 00380 00381 } else { 00382 /* should never happen */ 00383 colors_used = 256; 00384 } 00385 00386 min_code_bits = 2; /* min_code_bits of 1 isn't allowed */ 00387 i = 4; 00388 while (i < colors_used) { 00389 min_code_bits++; 00390 i *= 2; 00391 } 00392 00393 if ((grr->flags & GIF_WRITE_CAREFUL_MIN_CODE_SIZE) 00394 && gfi->compressed && gfi->compressed[0] != min_code_bits) { 00395 /* if compressed image disagrees with careful min_code_bits, recompress */ 00396 if (Gif_UncompressImage(gfi)) 00397 Gif_FullCompressImage(gfs, gfi, grr->flags); 00398 } 00399 00400 return min_code_bits; 00401 } |
|
Definition at line 65 of file ungifwrt.c. References Gif_Writer::f, and u_int16_t. Referenced by Gif_FullWriteFile().
00066 { 00067 fwrite(block, size, 1, grr->f); 00068 } |
|
Definition at line 59 of file ungifwrt.c. References Gif_Writer::f. Referenced by Gif_FullWriteFile().
00060 { 00061 fputc(b, grr->f); 00062 } |
|
Definition at line 749 of file ungifwrt.c. References Gif_FullCompressImage().
00750 { 00751 return Gif_FullCompressImage(gfs, gfi, 0); 00752 } |
|
|
Definition at line 734 of file ungifwrt.c. References Gif_Writer::block_putter, Gif_Writer::byte_putter, Gif_Writer::f, file_block_putter(), file_byte_putter(), Gif_Writer::flags, flags, and write_gif(). Referenced by Gif_WriteFile(), and write_stream().
00735 { 00736 Gif_Writer grr; 00737 grr.f = f; 00738 grr.byte_putter = file_byte_putter; 00739 grr.block_putter = file_block_putter; 00740 grr.flags = flags; 00741 return write_gif(gfs, &grr); 00742 } |
|
Definition at line 755 of file ungifwrt.c. References Gif_FullWriteFile().
00756 { 00757 return Gif_FullWriteFile(gfs, 0, f); 00758 } |
|
Definition at line 51 of file ungifwrt.c. References gifputbyte, and u_int16_t. Referenced by write_graphic_control_extension(), write_image(), write_logical_screen_descriptor(), and write_netscape_loop_extension().
00052 { 00053 gifputbyte(uns & 0xFF, grr); 00054 gifputbyte(uns >> 8, grr); 00055 } |
|
Definition at line 85 of file ungifwrt.c. References Gif_Writer::cap, Gif_ReArray, Gif_Writer::pos, u_int16_t, and Gif_Writer::v. Referenced by Gif_FullCompressImage().
|
|
Definition at line 72 of file ungifwrt.c. References Gif_Writer::cap, Gif_ReArray, Gif_Writer::pos, and Gif_Writer::v. Referenced by Gif_FullCompressImage().
|
|
Definition at line 219 of file ungifwrt.c. References c, Gif_Code, GIF_DEBUG, GIF_MAX_CODE_BITS, gifputblock, gifputbyte, Gif_Context::rle_next, u_int16_t, u_int32_t, and WRITE_BUFFER_SIZE. Referenced by write_image_data().
00221 { 00222 byte buffer[WRITE_BUFFER_SIZE]; 00223 byte *buf; 00224 00225 u_int16_t xleft; 00226 byte *imageline; 00227 00228 u_int32_t leftover; 00229 byte bits_left_over; 00230 00231 Gif_Code next_code; 00232 Gif_Code output_code; 00233 Gif_Code clear_code; 00234 Gif_Code eoi_code; 00235 Gif_Code bump_code; 00236 byte suffix; 00237 00238 Gif_Code *rle_next = gfc->rle_next; 00239 00240 byte cur_code_bits; 00241 00242 /* Here we go! */ 00243 gifputbyte(min_code_bits, grr); 00244 clear_code = 1 << min_code_bits; 00245 eoi_code = clear_code + 1; 00246 00247 cur_code_bits = min_code_bits + 1; 00248 /* next_code set by first runthrough of output clear_code */ 00249 GIF_DEBUG(("clear(%d) eoi(%d) bits(%d)",clear_code,eoi_code,cur_code_bits)); 00250 00251 output_code = clear_code; 00252 /* Because output_code is clear_code, we'll initialize next_code, et al. 00253 below. */ 00254 00255 bits_left_over = 0; 00256 leftover = 0; 00257 buf = buffer; 00258 xleft = width; 00259 imageline = img[0]; 00260 00261 while (1) { 00262 00263 /***** 00264 * Output `output_code' to the data stream. */ 00265 00266 leftover |= output_code << bits_left_over; 00267 bits_left_over += cur_code_bits; 00268 while (bits_left_over >= 8) { 00269 *buf++ = leftover & 0xFF; 00270 leftover = (leftover >> 8) & 0x00FFFFFF; 00271 bits_left_over -= 8; 00272 if (buf == buffer + WRITE_BUFFER_SIZE) { 00273 gifputbyte(WRITE_BUFFER_SIZE, grr); 00274 gifputblock(buffer, WRITE_BUFFER_SIZE, grr); 00275 buf = buffer; 00276 } 00277 } 00278 00279 if (output_code == clear_code) { 00280 /* Clear data and prepare gfc */ 00281 Gif_Code c; 00282 00283 cur_code_bits = min_code_bits + 1; 00284 next_code = eoi_code + 1; 00285 bump_code = clear_code << 1; 00286 00287 for (c = 0; c < clear_code; c++) 00288 rle_next[c] = clear_code; 00289 00290 } else if (next_code > bump_code) { 00291 00292 /* bump up compression size */ 00293 if (cur_code_bits == GIF_MAX_CODE_BITS) { 00294 output_code = clear_code; 00295 continue; 00296 } else { 00297 cur_code_bits++; 00298 bump_code <<= 1; 00299 } 00300 00301 } else if (output_code == eoi_code) 00302 break; 00303 00304 00305 /***** 00306 * Find the next code to output. */ 00307 00308 /* If height is 0 -- no more pixels to write -- output eoi_code. */ 00309 if (height == 0) 00310 output_code = eoi_code; 00311 else { 00312 output_code = suffix = *imageline; 00313 if (output_code >= clear_code) output_code = 0; 00314 goto next_pixel; 00315 00316 while (height != 0 && *imageline == suffix 00317 && rle_next[output_code] != clear_code) { 00318 output_code = rle_next[output_code]; 00319 next_pixel: 00320 imageline++; 00321 xleft--; 00322 if (xleft == 0) { 00323 xleft = width; 00324 height--; 00325 img++; 00326 imageline = img[0]; 00327 } 00328 } 00329 00330 if (height != 0 && *imageline == suffix) { 00331 rle_next[output_code] = next_code; 00332 rle_next[next_code] = clear_code; 00333 } 00334 next_code++; 00335 } 00336 } 00337 00338 if (bits_left_over > 0) 00339 *buf++ = leftover; 00340 00341 if (buf != buffer) { 00342 GIF_DEBUG(("imageblock(%d)", buf - buffer)); 00343 gifputbyte(buf - buffer, grr); 00344 gifputblock(buffer, buf - buffer, grr); 00345 } 00346 00347 gifputbyte(0, grr); 00348 } |
|
Definition at line 471 of file ungifwrt.c. References Gif_Color::blue, c, gifputbyte, Gif_Color::green, i, ncol, and Gif_Color::red. Referenced by write_image(), and write_logical_screen_descriptor().
00472 { 00473 int totalcol, i; 00474 /* Make sure ncol is reasonable */ 00475 if (ncol <= 0) ncol = 0; 00476 if (ncol > 256) ncol = 256; 00477 00478 /* Make sure the colormap is a power of two entries! */ 00479 /* GIF format doesn't allow a colormap with only 1 entry. */ 00480 for (totalcol = 2; totalcol < ncol; totalcol *= 2) ; 00481 00482 for (i = 0; i < ncol; i++, c++) { 00483 gifputbyte(c->red, grr); 00484 gifputbyte(c->green, grr); 00485 gifputbyte(c->blue, grr); 00486 } 00487 00488 /* Pad out colormap with black. */ 00489 for (; i < totalcol; i++) { 00490 gifputbyte(0, grr); 00491 gifputbyte(0, grr); 00492 gifputbyte(0, grr); 00493 } 00494 } |
|
Definition at line 618 of file ungifwrt.c. References blast_data(), Gif_Comment::count, gifputbyte, i, Gif_Comment::len, and Gif_Comment::str. Referenced by write_gif().
00619 { 00620 int i; 00621 for (i = 0; i < gfcom->count; i++) { 00622 gifputbyte('!', grr); 00623 gifputbyte(0xFE, grr); 00624 blast_data((byte *)gfcom->str[i], gfcom->len[i], grr); 00625 } 00626 } |
|
Definition at line 639 of file ungifwrt.c. References Gif_Extension::application, Gif_Extension::data, gifputblock, gifputbyte, Gif_Extension::kind, Gif_Extension::length, and u_int32_t. Referenced by write_gif().
00640 { 00641 u_int32_t pos = 0; 00642 if (gfex->kind < 0) return; /* ignore our private extensions */ 00643 00644 gifputbyte('!', grr); 00645 gifputbyte(gfex->kind, grr); 00646 if (gfex->kind == 255) { /* an application extension */ 00647 int len = gfex->application ? strlen(gfex->application) : 0; 00648 if (len) { 00649 gifputbyte(len, grr); 00650 gifputblock((byte *)gfex->application, len, grr); 00651 } 00652 } 00653 while (pos + 255 < gfex->length) { 00654 gifputbyte(255, grr); 00655 gifputblock(gfex->data + pos, 255, grr); 00656 pos += 255; 00657 } 00658 if (pos < gfex->length) { 00659 u_int32_t len = gfex->length - pos; 00660 gifputbyte(len, grr); 00661 gifputblock(gfex->data + pos, len, grr); 00662 } 00663 gifputbyte(0, grr); 00664 } |
|
Definition at line 668 of file ungifwrt.c. References Gif_Image::comment, Gif_Stream::comment, Gif_Image::delay, Gif_Image::disposal, Gif_Stream::extensions, Gif_Code, Gif_DeleteArray, GIF_MAX_CODE, Gif_NewArray, gifputblock, gifputbyte, i, Gif_Image::identifier, Gif_Stream::images, Gif_Stream::loopcount, Gif_Extension::next, Gif_Stream::nimages, Gif_Extension::position, Gif_Context::rle_next, Gif_Image::transparent, write_comment_extensions(), write_generic_extension(), write_graphic_control_extension(), write_image(), write_logical_screen_descriptor(), write_name_extension(), and write_netscape_loop_extension(). Referenced by Gif_FullWriteFile().
00669 { 00670 int ok = 0; 00671 int i; 00672 Gif_Image *gfi; 00673 Gif_Extension *gfex = gfs->extensions; 00674 Gif_Context gfc; 00675 00676 gfc.rle_next = Gif_NewArray(Gif_Code, GIF_MAX_CODE); 00677 if (!gfc.rle_next) 00678 goto done; 00679 00680 { 00681 byte isgif89a = 0; 00682 if (gfs->comment || gfs->loopcount > -1) 00683 isgif89a = 1; 00684 for (i = 0; i < gfs->nimages && !isgif89a; i++) { 00685 gfi = gfs->images[i]; 00686 if (gfi->identifier || gfi->transparent != -1 || gfi->disposal || 00687 gfi->delay || gfi->comment) 00688 isgif89a = 1; 00689 } 00690 if (isgif89a) 00691 gifputblock((byte *)"GIF89a", 6, grr); 00692 else 00693 gifputblock((byte *)"GIF87a", 6, grr); 00694 } 00695 00696 write_logical_screen_descriptor(gfs, grr); 00697 00698 if (gfs->loopcount > -1) 00699 write_netscape_loop_extension(gfs->loopcount, grr); 00700 00701 for (i = 0; i < gfs->nimages; i++) { 00702 Gif_Image *gfi = gfs->images[i]; 00703 while (gfex && gfex->position == i) { 00704 write_generic_extension(gfex, grr); 00705 gfex = gfex->next; 00706 } 00707 if (gfi->comment) 00708 write_comment_extensions(gfi->comment, grr); 00709 if (gfi->identifier) 00710 write_name_extension(gfi->identifier, grr); 00711 if (gfi->transparent != -1 || gfi->disposal || gfi->delay) 00712 write_graphic_control_extension(gfi, grr); 00713 if (!write_image(gfs, gfi, &gfc, grr)) 00714 goto done; 00715 } 00716 00717 while (gfex) { 00718 write_generic_extension(gfex, grr); 00719 gfex = gfex->next; 00720 } 00721 if (gfs->comment) 00722 write_comment_extensions(gfs->comment, grr); 00723 00724 gifputbyte(';', grr); 00725 ok = 1; 00726 00727 done: 00728 Gif_DeleteArray(gfc.rle_next); 00729 return ok; 00730 } |
|
Definition at line 579 of file ungifwrt.c. References Gif_Image::delay, Gif_Image::disposal, gifputbyte, gifputunsigned(), packed, and Gif_Image::transparent. Referenced by write_gif().
00580 { 00581 byte packed = 0; 00582 gifputbyte('!', grr); 00583 gifputbyte(0xF9, grr); 00584 gifputbyte(4, grr); 00585 if (gfi->transparent >= 0) packed |= 0x01; 00586 packed |= (gfi->disposal & 0x07) << 2; 00587 gifputbyte(packed, grr); 00588 gifputunsigned(gfi->delay, grr); 00589 gifputbyte((byte)gfi->transparent, grr); 00590 gifputbyte(0, grr); 00591 } |
|
Definition at line 498 of file ungifwrt.c. References calculate_min_code_bits(), Gif_Colormap::col, Gif_Image::compressed, Gif_Image::compressed_len, gifputblock, gifputbyte, gifputunsigned(), Gif_Image::height, Gif_Image::interlace, Gif_Image::left, Gif_Image::local, Gif_Colormap::ncol, packed, Gif_Image::top, u_int16_t, u_int32_t, Gif_Image::width, write_color_table(), and write_image_data(). Referenced by write_gif().
00499 { 00500 byte min_code_bits, packed = 0; 00501 00502 gifputbyte(',', grr); 00503 gifputunsigned(gfi->left, grr); 00504 gifputunsigned(gfi->top, grr); 00505 gifputunsigned(gfi->width, grr); 00506 gifputunsigned(gfi->height, grr); 00507 00508 if (gfi->local && gfi->local->ncol > 0) { 00509 int size = 2; 00510 packed |= 0x80; 00511 while (size < gfi->local->ncol && size < 256) 00512 size *= 2, packed++; 00513 } 00514 00515 if (gfi->interlace) packed |= 0x40; 00516 gifputbyte(packed, grr); 00517 00518 if (gfi->local && gfi->local->ncol > 0) 00519 write_color_table(gfi->local->col, gfi->local->ncol, grr); 00520 00521 /* calculate min_code_bits here (because calculation may involve 00522 recompression, if GIF_WRITE_CAREFUL_MIN_CODE_BITS is true) */ 00523 min_code_bits = calculate_min_code_bits(gfs, gfi, grr); 00524 00525 /* use existing compressed data if it exists. This will tend to whip 00526 people's asses who uncompress an image, keep the compressed data around, 00527 but modify the uncompressed data anyway. That sucks. */ 00528 if (gfi->compressed) { 00529 byte *compressed = gfi->compressed; 00530 u_int32_t compressed_len = gfi->compressed_len; 00531 while (compressed_len > 0) { 00532 u_int16_t amt = (compressed_len > 0x7000 ? 0x7000 : compressed_len); 00533 gifputblock(compressed, amt, grr); 00534 compressed += amt; 00535 compressed_len -= amt; 00536 } 00537 00538 } else 00539 write_image_data(gfi, min_code_bits, gfc, grr); 00540 00541 return 1; 00542 } |
|
Definition at line 404 of file ungifwrt.c. References Gif_DeleteArray, Gif_InterlaceLine(), Gif_NewArray, Gif_Image::height, Gif_Image::img, Gif_Image::interlace, real_write_image_data(), u_int16_t, and Gif_Image::width. Referenced by Gif_FullCompressImage(), and write_image().
00406 { 00407 byte **img = gfi->img; 00408 u_int16_t width = gfi->width, height = gfi->height; 00409 00410 if (gfi->interlace) { 00411 u_int16_t y; 00412 byte **nimg = Gif_NewArray(byte *, height + 1); 00413 if (!nimg) return 0; 00414 00415 for (y = 0; y < height; y++) 00416 nimg[y] = img[Gif_InterlaceLine(y, height)]; 00417 nimg[height] = 0; 00418 00419 real_write_image_data(nimg, width, height, min_code_bits, gfc, grr); 00420 00421 Gif_DeleteArray(nimg); 00422 } else 00423 real_write_image_data(img, width, height, min_code_bits, gfc, grr); 00424 00425 return 1; 00426 } |
|
Definition at line 546 of file ungifwrt.c. References Gif_Stream::background, Gif_Colormap::col, Gif_CalculateScreenSize(), gifputbyte, gifputunsigned(), Gif_Stream::global, Gif_Colormap::ncol, packed, Gif_Stream::screen_height, Gif_Stream::screen_width, u_int16_t, and write_color_table(). Referenced by write_gif().
00547 { 00548 byte packed = 0x70; /* high resolution colors */ 00549 00550 Gif_CalculateScreenSize(gfs, 0); 00551 gifputunsigned(gfs->screen_width, grr); 00552 gifputunsigned(gfs->screen_height, grr); 00553 00554 if (gfs->global) { 00555 u_int16_t size = 2; 00556 packed |= 0x80; 00557 while (size < gfs->global->ncol && size < 256) 00558 size *= 2, packed++; 00559 } 00560 00561 gifputbyte(packed, grr); 00562 gifputbyte(gfs->background, grr); 00563 gifputbyte(0, grr); /* no aspect ratio information */ 00564 00565 if (gfs->global) 00566 write_color_table(gfs->global->col, gfs->global->ncol, grr); 00567 } |
|
Definition at line 609 of file ungifwrt.c. References blast_data(), and gifputbyte. Referenced by write_gif().
00610 { 00611 gifputbyte('!', grr); 00612 gifputbyte(0xCE, grr); 00613 blast_data((byte *)id, strlen(id), grr); 00614 } |
|
Definition at line 630 of file ungifwrt.c. References gifputblock, gifputbyte, gifputunsigned(), and u_int16_t. Referenced by write_gif().
00631 { 00632 gifputblock((byte *)"!\xFF\x0BNETSCAPE2.0\x03\x01", 16, grr); 00633 gifputunsigned(value, grr); 00634 gifputbyte(0, grr); 00635 } |