libpng.txt
上传用户:zlh9724
上传日期:2007-01-04
资源大小:1991k
文件大小:48k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. libpng.txt - a description on how to use and modify libpng
  2. libpng 1.0 beta 2 - version 0.87
  3. For conditions of distribution and use, see copyright notice in png.h
  4. Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
  5. January 15, 1996
  6. Updated/rewritten per request in the libpng FAQ
  7. Copyright (c) 1995 Frank J. T. Wojcik
  8. December 18, 1995
  9. I. Introduction
  10. This file describes how to use and modify the PNG reference library
  11. (known as libpng) for your own use.  There are five sections to this
  12. file: introduction, structures, reading, writing, and modification and
  13. configuration notes for various special platforms.  In addition to this
  14. file, example.c is a good starting point for using the library, as
  15. it is heavily commented and should include everything most people
  16. will need.
  17. Libpng was written as a companion to the PNG specification, as a
  18. way to reduce the amount of time and effort it takes to support
  19. the PNG file format in application programs.  Most users will not
  20. have to modify the library significantly; advanced users may want
  21. to modify it more.  The library was coded for both kinds of users.
  22. All attempts were made to make it as complete as possible, while
  23. keeping the code easy to understand.  Currently, this library
  24. only supports C.  Support for other languages is being considered.
  25. Libpng has been designed to handle multiple sessions at one time,
  26. to be easily modifiable, to be portable to the vast majority of
  27. machines (ANSI, K&R, 16 bit, 32 bit) available, and to be easy to
  28. use.  The ultimate goal of libpng is to promote the acceptance of
  29. the PNG file format in whatever way possible.  While there is still
  30. work to be done (see the todo.txt file), libpng should cover the
  31. majority of the needs of it's users.
  32. Libpng uses zlib for its compression and decompression of PNG files.
  33. The zlib compression utility is a general purpose utility that is
  34. useful for more than PNG files, and can be used without libpng.
  35. See the documentation delivered with zlib for more details.
  36. Libpng is thread safe provided the threads are using different
  37. instances of the structures.  Each thread should have its own
  38. png_struct and png_info instances, and thus its own image.
  39. Libpng does not protect itself against two threads using the
  40. same instance of a structure.
  41. II. Structures
  42. There are two main structures that are important to libpng, png_struct
  43. and png_info.  The first, png_struct, is an internal structure that
  44. will not, for the most part, be used by the general user except as
  45. the first variable passed to every png function call.
  46. The png_info structure is designed to provide information about the
  47. png file.  All of its fields are intended to be examined or modified
  48. by the user.  See png.h for a good description of the png_info fields.
  49. png.h is also an invaluable reference for programming with libpng.
  50. And while I'm on the topic, make sure you include the png header file:
  51. #include <png.h>
  52. III. Reading
  53. Checking PNG files:
  54. Libpng provides a simple check to see if a file is a PNG file.  To
  55. use it, pass in the first 1 to 8 bytes of the file, and it will return
  56. true or false (1 or 0) depending on whether the bytes could be part
  57. of a PNG file.  Of course, the more bytes you pass in, the greater
  58. the accuracy of the prediction.  If you pass in more then eight bytes,
  59. libpng will only look at the first eight bytes.
  60. fread(header, 1, number, fp);
  61. is_png = png_check_sig(header, number);
  62. Reading PNG files:
  63. We'll now walk you through the possible functions to call when reading
  64. in a PNG file, briefly explaining the syntax and purpose of each one.
  65. See example.c and png.h for more detail.  While Progressive reading
  66. is covered in the next section, you will still need some of the
  67. functions discussed in this section to read a PNG file.
  68. The first thing you need to do while reading a PNG file, aside from
  69. the standard I/O initialization, is to allocate and initialize
  70. png_struct and png_info.  As these are both large, you may not want to
  71. store these on the stack, unless you have stack space to spare.  Of
  72. course, you will want to check if malloc returns NULL.
  73. png_structp png_ptr = malloc(sizeof (png_struct));
  74. if (!png_ptr)
  75. return;
  76. png_infop info_ptr = malloc(sizeof (png_info));
  77. if (!info_ptr)
  78. {
  79. free(png_ptr);
  80. return;
  81. }
  82. You may also want to do any i/o initialization here, before
  83. you get into libpng, so if it doesn't work, you don't have
  84. much to undo.
  85. FILE *fp = fopen(file_name, "rb");
  86. if (!fp)
  87. {
  88. free(png_ptr);
  89. free(info_ptr);
  90. return;
  91. }
  92. If you are not using the standard i/o functions, you will need
  93. to replace them with custom functions.  See the discussion under
  94. Customizing libpng.
  95. After you have these structures, you will need to set up the
  96. error handling.  When libpng encounters an error, it expects to
  97. longjmp back to your routine.  Therefore, you will need to call
  98. setjmp and pass the jmpbuf field of your png_struct.  If you
  99. read the file from different routines, you will need to update
  100. the jmpbuf field every time you enter a new routine that will
  101. call a png_ function.  See your documentation of setjmp/longjmp
  102. for your compiler for more information on setjmp/longjmp.  See
  103. the discussion on libpng error handling in the Customizing Libpng
  104. section below for more information on the libpng error handling.
  105. If an error occurs, and libpng longjmp's back to your setjmp,
  106. you will want to call png_read_destroy() to free any memory.
  107. if (setjmp(png_ptr->jmpbuf))
  108. {
  109. png_read_destroy(png_ptr, info_ptr, (png_info *)0);
  110. /* free pointers before returning, if necessary */
  111. free(png_ptr);
  112. free(info_ptr);
  113. fclose(fp);
  114. return;
  115. }
  116. Next, you will need to call png_info_init() and png_read_init().
  117. These functions make sure all the fields are initialized to useful
  118. values, and, in the case of png_read_init(), and allocate any memory
  119. needed for internal uses.  You must call png_info_init() first, as
  120. png_read_init() could do a longjmp, and if the info is not initialized,
  121. the png_read_destroy() could try to png_free() random addresses, which
  122. would be bad.
  123.    png_info_init(info_ptr);
  124. png_read_init(png_ptr);
  125. Now you need to set up the input code.  The default for libpng is
  126. to use the C function fread().  If you use this, you will need to
  127. pass a valid FILE * in the function png_init_io().  Be sure that
  128. the file is opened in binary mode.  If you wish to handle reading
  129. data in another way, see the discussion on png i/o handling in the
  130. Customizing Libpng section below.
  131. png_init_io(png_ptr, fp);
  132. You are now ready to read all the file information up to the actual
  133. image data.  You do this with a call to png_read_info().
  134.    png_read_info(png_ptr, info_ptr);
  135. The png_info structure is now filled in with all the data necessary
  136. to read the file.  Some of the more important parts of the png_info are:
  137. width          - holds the width of the file
  138. height         - holds the height of the file
  139. bit_depth      - holds the bit depth of one of the image channels
  140. color_type     - describes the channels and what they mean
  141.   (see the PNG_COLOR_TYPE_ macros for more information)
  142. channels       - number of channels of info for the color type
  143. pixel_depth    - bits per pixel, the result of multiplying the bit_depth
  144.   times the channels
  145. rowbytes       - number of bytes needed to hold a row
  146. interlace_type - currently 0 for none, 1 for interlaced
  147. valid          - this details which optional chunks were found in the
  148.   file to see if a chunk was present, AND valid with the
  149.   appropriate PNG_INFO_<chunk name> define.
  150. These are also important, but their validity depends on whether a
  151. corresponding chunk exists. Use valid (see above) to ensure that what
  152. you're doing with these values makes sense.
  153. palette        - the palette for the file
  154. num_palette    - number of entries in the palette
  155. gamma          - the gamma the file is written at
  156. sig_bit        - the number of significant bits
  157.   for the gray, red, green, and blue channels, whichever are
  158.   appropriate for the given color type.
  159. sig_bit_number - number of channels
  160. trans_values   - transparent pixel for non-paletted images
  161. trans          - array of transparent entries for paletted images
  162. number_trans   - number of transparent entries
  163. hist           - histogram of palette
  164. text           - text comments in the file.
  165. num_text       - number of comments
  166. for more information, see the png_info definition in png.h and the
  167. PNG specification for chunk contents.  Be careful with trusting
  168. rowbytes, as some of the transformations could increase the space
  169. needed to hold a row (expand, rgbx, xrgb, graph_to_rgb, etc.).
  170. See png_update_info(), below.
  171. A quick word about text and num_text.  PNG stores comments in
  172. keyword/text pairs, one pair per chunk.  While there are
  173. suggested keywords, there is no requirement to restrict the use
  174. to these strings.  There is a requirement to have at least one
  175. character for a keyword.  It is strongly suggested that keywords
  176. be sensible to humans (that's the point), so don't use abbreviations.
  177. See the png specification for more details.  There is no requirement
  178. to have text after the keyword.
  179. Keywords are restricted to 80 characters without leading or trailing
  180. spaces, but spaces are allowed within the keyword  It is possible to
  181. have the same keyword any number of times.  The text field is an
  182. array of png_text structures, each holding pointer to a keyword
  183. and a pointer to a text string.  Only the text string may be null.
  184. The keyword/text pairs are put into the array in the order that
  185. they are received.  However, some or all of the text chunks may be
  186. after the image, so to make sure you have read all the text chunks,
  187. don't mess with these until after you read the stuff after the image.
  188. This will be mentioned again below in the discussion that goes with
  189. png_read_end().
  190. After you've read the file information, you can set up the library to
  191. handle any special transformations of the image data.  The various
  192. ways to transform the data will be described in the order that they
  193. occur.  This is important, as some of these change the color type
  194. and bit depth of the data, and some others only work on certain
  195. color types and bit depths.  Even though each transformation should
  196. check to see if it has data that it can do somthing with, you should
  197. make sure to only enable a transformation if it will be valid for
  198. the data.  For example, don't swap red and blue on grayscale data.
  199. This transforms bit depths of less than 8 to 8 bits, changes paletted
  200. images to rgb, and adds an alpha channel if there is transparency
  201. information in a tRNS chunk.  This is probably most useful on grayscale
  202. images with bit depths of 2 or 4 and tRNS chunks.
  203.    if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE &&
  204.       info_ptr->bit_depth < 8)
  205. png_set_expand(png_ptr);
  206. if (info_ptr->color_type == PNG_COLOR_TYPE_GRAY &&
  207.       info_ptr->bit_depth < 8)
  208.       png_set_expand(png_ptr);
  209.    if (info_ptr->valid & PNG_INFO_tRNS)
  210.       png_set_expand(png_ptr);
  211. This handles alpha and transparency by replacing it with a background
  212. value.  If there was a valid one in the file, you can use it if you
  213. want.  However, you can replace it with your own if you want also.  If
  214. there wasn't one in the file, you must supply a color.  If libpng is
  215. doing gamma correction, you will need to tell libpng where the
  216. background came from so it can do the appropriate gamma correction.
  217. If you are modifying the color data with png_set_expand(), you must
  218. indicate whether the background needs to be expanded.  See the
  219. function definition in png.h for more details.
  220. png_color_16 my_background;
  221.    if (info_ptr->valid & PNG_INFO_bKGD)
  222.       png_set_backgrond(png_ptr, &(info_ptr->background),
  223. PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
  224.    else
  225.       png_set_background(png_ptr, &my_background,
  226.          PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
  227. This handles gamma transformations of the data.  Pass both the file
  228. gamma and the desired screen gamma.  If the file does not have a
  229. gamma value, you can pass one anyway if you wish.  Note that file
  230. gammas are inverted from screen gammas.  See the discussions on
  231. gamma in the PNG specification for more information.  It is strongly
  232. recommended that viewers support gamma correction.
  233.    if (info_ptr->valid & PNG_INFO_gAMA)
  234.       png_set_gamma(png_ptr, screen_gamma, info_ptr->gamma);
  235. else
  236. png_set_gamma(png_ptr, screen_gamma, 0.45);
  237. PNG can have files with 16 bits per channel.  If you only can handle
  238. 8 bits per channel, this will strip the pixels down to 8 bit.
  239.    if (info_ptr->bit_depth == 16)
  240.       png_set_strip_16(png_ptr);
  241. If you need to reduce an rgb file to a paletted file, or if a
  242. paletted file has more entries then will fit on your screen,
  243. png_set_dither() will do that.  Note that this is a simple match
  244. dither, that merely finds the closest color available.  This should
  245. work fairly well with optimized palettes, and fairly badly with linear
  246. color cubes.  If you pass a palette that is larger then
  247. maximum_colors, the file will reduce the number of colors in the
  248. palette so it will fit into maximum_colors.  If there is a histogram,
  249. it will use it to make intelligent choices when reducing the palette.
  250. If there is no histogram, it may not do as good a job.
  251. This function will be rewritten and/or replaced in libpng 0.9, which
  252. will have full two pass dithering with optimized palettes.
  253. if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
  254.    {
  255.       if (info_ptr->valid & PNG_INFO_PLTE)
  256.          png_set_dither(png_ptr, info_ptr->palette,
  257.             info_ptr->num_palette, max_screen_colors,
  258.                info_ptr->histogram);
  259.       else
  260.       {
  261. png_color std_color_cube[MAX_SCREEN_COLORS] =
  262.             { ... colors ... };
  263.          png_set_dither(png_ptr, std_color_cube, MAX_SCREEN_COLORS,
  264.             MAX_SCREEN_COLORS, NULL);
  265.       }
  266.    }
  267. PNG files describe monocrome as black is zero and white is one.  The
  268. following code will reverse this (make black be one and white be zero):
  269.    if (info_ptr->bit_depth == 1 &&
  270.       info_ptr->color_type == PNG_COLOR_GRAY)
  271.       png_set_invert(png_ptr);
  272. PNG files have possible bit depths of 1, 2, 4, 8, and 16.  However,
  273. they also provide a way to describe the true bit depth of the image.
  274. It is then required that values be "scaled" or "shifted" up to the bit
  275. depth used in the file.  See the PNG specification for details.  This
  276. code reduces the pixels back down to the true bit depth:
  277. if (info_ptr->valid & PNG_INFO_sBIT)
  278. png_set_shift(png_ptr, &(info_ptr->sig_bit));
  279. PNG files pack pixels of bit depths 1, 2, and 4 into bytes as small as
  280. they can, resulting in, for example, 8 pixels per byte for 1 bit
  281. files.  This code expands to 1 pixel per byte without changing the
  282. values of the pixels:
  283. if (info_ptr->bit_depth < 8)
  284. png_set_packing(png_ptr);
  285. PNG files store 3 color pixels in red, green, blue order.  This code
  286. changes the storage of the pixels to blue, green, red:
  287. if (info_ptr->color_type == PNG_COLOR_TYPE_RGB ||
  288. info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
  289. png_set_bgr(png_ptr);
  290. For some uses, you may want a gray-scale image to be represented as
  291. rgb.  This code will do that conversion:
  292.    if (info_ptr->color_type == PNG_COLOR_TYPE_GRAY ||
  293.       info_ptr->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
  294. png_set_gray_to_rgb(png_ptr);
  295. PNG files store 16 bit pixels in network byte order (big-endian,
  296. ie. most significant bits first).  This code chages the storage to the
  297. other way (little-endian, ie. least significant bits first, eg. the
  298. way PCs store them):
  299. if (info_ptr->bit_depth == 16)
  300. png_set_swap(png_ptr);
  301. PNG files store rgb pixels packed into 3 bytes. This code packs them
  302. into 4 bytes:
  303.    if (info_ptr->bit_depth == 8 &&
  304.       info_ptr->color_type == PNG_COLOR_TYPE_RGB)
  305.       png_set_filler(png_ptr, filler_byte, PNG_FILLER_BEFORE);
  306. where filler_byte is the number to fill with, and the location is
  307. either PNG_FILLER_BEFORE or PNG_FILLER_AFTER, depending upon whether
  308. you want the filler before the rgb or after.
  309. The last thing to handle is interlacing; this is covered in detail below,
  310. but you must call the function here.
  311.    if (info_ptr->interlace_type)
  312.       number_passes = png_set_interlace_handling(png_ptr);
  313. After setting the transformations, you can update your palette by
  314. calling png_start_read_image().  This function is provided for those
  315. who need an updated palette before they read the image data.  If you
  316. don't call this function, the library will automatically call it
  317. before it reads the first row.
  318. png_start_read_image(png_ptr);
  319. libpng can update your png_info structure to reflect any
  320. transformations you've requested with this call.  This is most useful
  321. to update the info structures rowbytes field, so you can use it to
  322. allocate your image memory.  This function calls
  323. png_start_read_image(), so you don't have to call both of them.
  324. png_read_update_info(png_ptr, info_ptr);
  325. After you call png_read_update_info(), you can allocate any
  326. memory you need to hold the image.  As the actual allocation
  327. varies among applications, no example will be given.  If you
  328. are allocating one large chunk, you may find it useful to
  329. build an array of pointers to each row, as it will be needed
  330. for some of the functions below.
  331. After you've allocated memory, you can read the image data.
  332. The simplest way to do this is in one function call.  If you are
  333. allocating enough memory to hold the whole image, you can just
  334. call png_read_image() and libpng will read in all the image data
  335. and put it in the memory area supplied.  You will need to pass in
  336. an array of pointers to each row.
  337. This function automatically handles interlacing, so you don't need
  338. to call png_set_interlace_handling() or call this function multiple
  339. times, or any of that other stuff necessary with png_read_rows().
  340.    png_read_image(png_ptr, row_pointers);
  341. where row_pointers is:
  342. png_bytep row_pointers[height];
  343. You can point to void or char or whatever you use for pixels.
  344. If you don't want to read the whole image in at once, you can
  345. use png_read_rows() instead.  If there is no interlacing (check
  346. info_ptr->interlace_type), this is simple:
  347. png_read_rows(png_ptr, row_pointers, NULL, number_of_rows);
  348. row_pointers is the same as in the png_read_image() call.
  349. If you are just calling one row at a time, you can do this for
  350. row_pointers:
  351. png_bytep row_pointers = row;
  352. png_read_rows(png_ptr, &row_pointers, NULL, 1);
  353. If the file is interlaced (info_ptr->interlace_type != 0), things get
  354. a good deal harder.  The only currently (as of 12/95) defined
  355. interlacing scheme for PNG files (info_ptr->interlace_type == 1) is a
  356. complicated interlace scheme, known as Adam7, that breaks down an
  357. image into seven smaller images of varying size.  libpng will fill out
  358. those images or it will give them to you "as is".  If you want to fill
  359. them out, there are two ways to do that.  The one mentioned in the PNG
  360. specification is to expand each pixel to cover those pixels that have
  361. not been read yet.  This results in a blocky image for the first pass,
  362. which gradually smoothes out as more pixels are read.  The other
  363. method is the "sparkle" method, where pixels are draw only in their
  364. final locations, with the rest of the image remaining whatever colors
  365. they were initialized to before the start of the read.  The first
  366. method usually looks better, but tends to be slower, as there are more
  367. pixels to put in the rows.
  368. If you don't want libpng to handle the interlacing details, just
  369. call png_read_rows() the correct number of times to read in all
  370. seven images.  See the PNG specification for more details on the
  371. interlacing scheme.
  372. If you want libpng to expand the images, call this above:
  373. if (info_ptr->interlace_type)
  374. number_passes = png_set_interlace_handling(png_ptr);
  375. This will return the number of passes needed.  Currently, this
  376. is seven, but may change if another interlace type is added.
  377. This function can be called even if the file is not interlaced,
  378. when it will return one.
  379. If you are not going to display the image after each pass, but are
  380. going to wait until the entire image is read in, use the sparkle
  381. effect.  This effect is faster and the end result of either method
  382. is exactly the same.  If you are planning on displaying the image
  383. after each pass, the rectangle effect is generally considered the
  384. better looking one.
  385. If you only want the "sparkle" effect, just call png_read_rows() as
  386. normal, with the third parameter NULL.  Make sure you make pass over
  387. the image number_passes times, and you don't change the data in the
  388. rows between calls.  You can change the locations of the data, just
  389. not the data.  Each pass only writes the pixels appropriate for that
  390. pass, and assumes the data from previous passes is still valid.
  391. png_read_rows(png_ptr, row_pointers, NULL, number_of_rows);
  392. If you only want the first effect (the rectangles), do the same as
  393. before except pass the row buffer in the third parameter, and leave
  394. the second parameter NULL.
  395. png_read_rows(png_ptr, NULL, row_pointers, number_of_rows);
  396. After you are finished reading the image, you can finish reading
  397. the file.  If you are interested in comments or time, you should
  398. pass the png_info pointer from the png_read_info() call.  If you
  399. are not interested, you can pass NULL.
  400.    png_read_end(png_ptr, info_ptr);
  401. When you are done, you can free all memory used by libpng like this:
  402.    png_read_destroy(png_ptr, info_ptr, (png_info *)0);
  403. After that, you can discard the structures, or reuse them another
  404. read or write.  For a more compact example of reading a PNG image,
  405. see the file example.c.
  406. Reading PNG files progressively:
  407. The progressive reader is slightly different then the non-progressive
  408. reader.  Instead of calling png_read_info(), png_read_rows(), and
  409. png_read_end(), you make one call to png_process_data(), which calls
  410. callbacks when it has the info, a row, or the end of the image.  You
  411. set up these callbacks with png_set_progressive_read_fn().  You don't
  412. have to worry about the input/output functions of libpng, as you are
  413. giving the library the data directly in png_process_data().  I will
  414. assume that you have read the second on reading PNG files above,
  415. so I will only highlight the differences (although I will show
  416. all of the code).
  417. png_structp png_ptr;
  418. png_infop info_ptr;
  419. int
  420. initialize_png_reader()
  421. {
  422. png_ptr = malloc(sizeof (png_struct));
  423. if (!png_ptr)
  424. return -1;
  425. info_ptr = malloc(sizeof (png_info));
  426. if (!info_ptr)
  427. {
  428. free(png_ptr);
  429. return -1;
  430. }
  431. if (setjmp(png_ptr->jmpbuf))
  432. {
  433. png_read_destroy(png_ptr, info_ptr, (png_info *)0);
  434. /* free pointers before returning, if necessary */
  435. free(png_ptr);
  436. free(info_ptr);
  437. return -1;
  438. }
  439. png_info_init(info_ptr);
  440. png_read_init(png_ptr);
  441. /* this one's new.  You will need to provide all three
  442. function callbacks, even if you aren't using them all.
  443. You can use any void pointer as the user_ptr, and
  444. retrieve the pointer from inside the callbacks using
  445.       the function png_get_progressive_ptr(png_ptr); */
  446. png_set_progressive_read_fn(png_ptr, user_ptr,
  447. info_callback, row_callback, end_callback);
  448. return 0;
  449. }
  450. int
  451. process_data(png_bytep buffer, png_uint_32 length)
  452. {
  453. if (setjmp(png_ptr->jmpbuf))
  454. {
  455. png_read_destroy(png_ptr, info_ptr, (png_info *)0);
  456. free(png_ptr);
  457. free(info_ptr);
  458. return -1;
  459. }
  460. /* this one's new also.  Simply give it a chunk of data
  461. from the file stream (in order, of course).  On Segmented
  462. machines, don't give it any more then 64K.  The library
  463. seems to run fine with sizes of 4K, although you can give
  464. it much less if necessary (I assume you can give it chunks
  465. of 1 byte, but I haven't tried less then 256 bytes yet).
  466. When this function returns, you may want to display any
  467. rows that were generated in the row callback. */
  468. png_process_data(png_ptr, info_ptr, buffer, length);
  469. return 0;
  470. }
  471. info_callback(png_structp png_ptr, png_infop info)
  472. {
  473. do any setup here, including setting any of the transformations
  474. mentioned in the Reading PNG files section.  For now, you _must_
  475. call either png_start_read_image() or png_read_update_info()
  476. after all the transformations are set (even if you don't set
  477. any).  You may start getting rows before png_process_data()
  478. returns, so this is your last chance to prepare for that.
  479. }
  480. row_callback(png_structp png_ptr, png_bytep new_row,
  481. png_uint_32 row_num, int pass)
  482. {
  483. this function is called for every row in the image.  If the
  484. image is interlacing, and you turned on the interlace handler,
  485. this function will be called for every row in every pass.
  486. Some of these rows will not be changed from the previous pass.
  487. When the row is not changed, the new_row variable will be NULL.
  488. The rows and passes are called in order, so you don't really
  489. need the row_num and pass, but I'm supplying them because it
  490. may make your life easier.
  491. For the non-NULL rows of interlaced images, you must call
  492. png_progressive_combine_row() passing in the row and the
  493. old row.  You can call this function for NULL rows (it will
  494. just return) and for non-interlaced images (it just does the
  495. memcpy for you) if it will make the code easier.  Thus, you
  496. can just do this for all cases:
  497. png_progressive_combine_row(png_ptr, old_row, new_row);
  498. where old_row is what was displayed for previous rows.  Note
  499. that the first pass (pass == 0 really) will completely cover
  500. the old row, so the rows do not have to be initialized.  After
  501. the first pass (and only for interlaced images), you will have
  502. to pass the current row, and the function will combine the
  503. old row and the new row.
  504. }
  505. end_callback(png_structp png_ptr, png_infop info)
  506. {
  507. this function is called when the whole image has been read,
  508. including any chunks after the image (up to and including
  509. the IEND).  You will usually have the same info chunk as you
  510. had in the header, although some data may have been added
  511. to the comments and time fields.
  512. Most people won't do much here, perhaps setting a flag that
  513. marks the image as finished.
  514. }
  515. IV. Writing
  516. Much of this is very similar to reading.  However, everything of
  517. importance is repeated here, so you don't have to constantly look
  518. back up in the reading section to understand writing.
  519. The first thing you need to do while writing a PNG file is to allocate
  520. and initialize png_struct and png_info.  As these are both large, you
  521. may not want to store these on the stack, unless you have stack space
  522. to spare.
  523. png_structp png_ptr = malloc(sizeof (png_struct));
  524. if (!png_ptr)
  525. return;
  526.    png_infop info_ptr = malloc(sizeof (png_info));
  527. if (!info_ptr)
  528.    {
  529.       free(png_ptr);
  530.       return;
  531.    }
  532. You may also want to do any i/o initialization here, before
  533. you get into libpng, so if it doesn't work, you don't have
  534. much to undo.
  535.    FILE *fp = fopen(file_name, "wb");
  536.    if (!fp)
  537.    {
  538.       free(png_ptr);
  539. free(info_ptr);
  540.       return;
  541.    }
  542. After you have these structures, you will need to set up the
  543. error handling.  When libpng encounters an error, it expects to
  544. longjmp back to your routine.  Therefore, you will need to call
  545. setjmp and pass the jmpbuf field of your png_struct.  If you
  546. write the file from different routines, you will need to update
  547. the jmpbuf field every time you enter a new routine that will
  548. call a png_ function.  See your documentation of setjmp/longjmp
  549. for your compiler for more information on setjmp/longjmp.  See
  550. the discussion on libpng error handling in the Customizing Libpng
  551. section below for more information on the libpng error handling.
  552.    if (setjmp(png_ptr->jmpbuf))
  553.    {
  554.       png_write_destroy(png_ptr);
  555. /* free pointers before returning.  Make sure you clean up
  556.          anything else you've done. */
  557.       free(png_ptr);
  558.       free(info_ptr);
  559. fclose(fp);
  560.       return;
  561.    }
  562. Next, you will need to call png_info_init() and png_write_init().
  563. These functions make sure all the fields are initialized to useful
  564. values, and, in the case of png_write_init(), allocate any memory
  565. needed for internal uses.  Do png_info_init() first, so if
  566. png_write_init() longjmps, you know info_ptr is valid, so you
  567. don't free random memory pointers, which would be bad.
  568.    png_info_init(info_ptr);
  569. png_write_init(png_ptr);
  570. Now you need to set up the input code.  The default for libpng is
  571. to use the C function fwrite().  If you use this, you will need to
  572. pass a valid FILE * in the function png_init_io().  Be sure that
  573. the file is opened in binary mode.  If you wish to handle writing
  574. data in another way, see the discussion on png i/o handling in the
  575. Customizing Libpng section below.
  576.    png_init_io(png_ptr, fp);
  577. You now have the option of modifying how the compression library
  578. will run.  The following functions are mainly for testing, but
  579. may be useful in certain special cases, like if you need to
  580. write png files extremely fast and are willing to give up some
  581. compression, or if you want to get the maximum possible compression
  582. at the expense of slower writing.  If you have no special needs
  583. in this area, let the library do what it wants, as it has been
  584. carefully tuned to deliver the best speed/compression ratio.
  585. See the compression library for more details.
  586.    /* turn on or off filtering (1 or 0) */
  587.    png_set_filtering(png_ptr, 1);
  588.    /* compression level (0 - none, 6 - default, 9 - maximum) */
  589. png_set_compression_level(png_ptr, Z_DEFAULT_COMPRESSION);
  590.    png_set_compression_mem_level(png_ptr, 8);
  591.    png_set_compression_strategy(png_ptr, Z_DEFAULT_STRATEGY);
  592.    png_set_compression_window_bits(png_ptr, 15);
  593.    png_set_compression_method(png_ptr, 8);
  594. You now need to fill in the png_info structure with all the data
  595. you wish to write before the actual image.  Note that the only thing
  596. you are allowed to write after the image is the text chunks and the
  597. time chunk.  See png_write_end() for more information on that.  If you
  598. wish to write them before the image, fill them in now.  If you want to
  599. wait until after the data, don't fill them until png_write_end().  For
  600. all the fields in png_info, see png.h.  For explanations of what the
  601. fields contain, see the PNG specification.
  602. Some of the more important parts of the png_info are:
  603. width          - holds the width of the file
  604. height         - holds the height of the file
  605. bit_depth      - holds the bit depth of one of the image channels
  606. color_type     - describes the channels and what they mean
  607.   see the PNG_COLOR_TYPE_ defines for more information
  608.    interlace_type - currently 0 for none, 1 for interlaced
  609. valid          - this describes which optional chunks to write to the
  610.   file.  Note that if you are writing a
  611.   PNG_COLOR_TYPE_PALETTE file, the PLTE chunk is not
  612.   optional, but must still be marked for writing.  To
  613.   mark chunks for writing, OR valid with the appropriate
  614.   PNG_INFO_<chunk name> define.
  615. palette        - the palette for the file
  616. num_palette    - number of entries in the palette
  617. gamma          - the gamma the file is written at
  618. sig_bit        - the number of significant bits
  619.   for the gray, red, green, and blue channels, whichever are
  620.   appropriate for the given color type.
  621.    sig_bit_number - number of channels
  622. trans_values   - transparent pixel for non-paletted images
  623. trans          - array of transparent entries for paletted images
  624. number_trans   - number of transparent entries
  625. hist           - histogram of palette
  626. text           - text comments in the file.
  627. num_text       - number of comments
  628. A quick word about text and num_text.  text is an array of png_text
  629. structures.  num_text is the number of valid structures in the array.
  630. If you want, you can use max_text to hold the size of the array, but
  631. libpng ignores it for writing (it does use it for reading).  Each
  632. png_text structure holds a keyword-text value, and a compression type.
  633. The compression types have the same valid numbers as the compression
  634. types of the image data.  Currently, the only valid number is zero.
  635. However, you can store text either compressed or uncompressed, unlike
  636. images which always have to be compressed.  So if you don't want the
  637. text compressed, set the compression type to -1.  Until text gets
  638. arount 1000 bytes, it is not worth compressing it.
  639. The keyword-text pairs work like this.  Keywords should be short
  640. simple descriptions of what the comment is about.  Some typical
  641. keywords are found in the PNG specification, as is some recomendations
  642. on keywords.  You can repeat keywords in a file.  You can even write
  643. some text before the image and some after.  For example, you may want
  644. to put a description of the image before the image, but leave the
  645. disclaimer until after, so viewers working over modem connections
  646. don't have to wait for the disclaimer to go over the modem before
  647. they start seeing the image.  Finally, keywords should be full
  648. words, not abbreviations.  Keywords can not contain NUL characters,
  649. and should not contain control characters.  Text in general should
  650. not contain control characters.  The keyword must be present, but
  651. you can leave off the text string on non-compressed pairs.
  652. Compressed pairs must have a text string, as only the text string
  653. is compressed anyway, so the compression would be meaningless.
  654. PNG supports modification time via the png_time structure.  Two
  655. conversion routines are proved, png_convert_from_time_t() for
  656. time_t and png_convert_from_struct_tm() for struct tm.  The
  657. time_t routine uses gmtime().  You don't have to use either of
  658. these, but if you wish to fill in the png_time structure directly,
  659. you should provide the time in universal time (GMT) if possible
  660. instead of your local time.  Note that the year number is the full
  661. year (ie 1996, rather than 96).
  662. It is possible to have libpng flush any pending output, either manually,
  663. or automatically after a certain number of lines have been written.  To
  664. flush the output stream a single time call:
  665. png_write_flush(png_ptr);
  666. and to have libpng flush the output stream periodically after a certain
  667. number of scanlines have been written, call:
  668. png_set_flush(png_ptr, nrows);
  669. Note that the distance between rows is from the last time png_write_flush
  670. was called, or the first row of the image if it has never been called.
  671. So if you write 50 lines, and then png_set_flush 25, it will flush the
  672. output on the next scanline, and on line 75, unless png_write_flush is
  673. called earlier.  If nrows is too small (less than about 10 lines) the
  674. image compression may decrease dramatically (although this may be
  675. acceptable for real-time applications).  Infrequent flushing will only
  676. degrade the compression performance by a few percent over images that
  677. do not use flushing.
  678. You are now ready to write all the file information up to the actual
  679. image data.  You do this with a call to png_write_info().
  680. png_write_info(png_ptr, info_ptr);
  681. After you've read the file information, you can set up the library to
  682. handle any special transformations of the image data.  The various
  683. ways to transform the data will be described in the order that they
  684. occur.  This is important, as some of these change the color type
  685. and bit depth of the data, and some others only work on certain
  686. color types and bit depths.  Even though each transformation should
  687. check to see if it has data that it can do somthing with, you should
  688. make sure to only enable a transformation if it will be valid for
  689. the data.  For example, don't swap red and blue on grayscale data.
  690. PNG files store rgb pixels packed into 3 bytes.  This code tells
  691. the library to use 4 bytes per pixel
  692. png_set_filler(png_ptr, 0, PNG_FILLER_BEFORE);
  693. where the 0 is not used for writing, and the location is either
  694. PNG_FILLER_BEFORE or PNG_FILLER_AFTER, depending upon whether you
  695. want the filler before the rgb or after.
  696. PNG files pack pixels of bit depths 1, 2, and 4 into bytes as small as
  697. they can, resulting in, for example, 8 pixels per byte for 1 bit files.
  698. If the data is supplied at 1 pixel per byte, use this code, which will
  699. correctly pack the values:
  700. png_set_packing(png_ptr);
  701. PNG files reduce possible bit depths to 1, 2, 4, 8, and 16.  If your
  702. data is of another bit depth, but is packed into the bytes correctly,
  703. this will scale the values to appear to be the correct bit depth.
  704. Make sure you write a sBIT chunk when you do this, so others, if
  705. they want, can reduce the values down to their true depth.
  706. /* do this before png_write_info() */
  707. info_ptr->valid |= PNG_INFO_sBIT;
  708. /* note that you can cheat and set all the values of
  709. sig_bit to true_bit_depth if you want */
  710. if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
  711. {
  712.       info_ptr->sig_bit.red = true_bit_depth;
  713.       info_ptr->sig_bit.green = true_bit_depth;
  714.       info_ptr->sig_bit.blue = true_bit_depth;
  715.    }
  716.    else
  717.    {
  718.       info_ptr->sig_bit.gray = true_bit_depth;
  719.    }
  720.    if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
  721.    {
  722.       info_ptr->sig_bit.alpha = true_bit_depth;
  723.    }
  724.    png_set_shift(png_ptr, &(info_ptr->sig_bit));
  725. PNG files store 16 bit pixels in network byte order (big-endian,
  726. ie. most significant bits first).  This code would be used to supply
  727. them the other way (little-endian, ie. least significant bits first,
  728. eg. the way PCs store them):
  729.    png_set_swap(png_ptr);
  730. PNG files store 3 color pixels in red, green, blue order.  This code
  731. would be used to supply the pixels as blue, green, red:
  732.    png_set_bgr(png_ptr);
  733. PNG files describe monochrome as black being zero and white being
  734. one. This code would be used to supply the pixels with this reversed
  735. (black being one and white being zero):
  736. png_set_invert(png_ptr);
  737. That's it for the transformations.  Now you can write the image data.
  738. The simplest way to do this is in one function call.  If have the
  739. whole image in memory, you can just call png_write_image() and libpng
  740. will write the image.  You will need to pass in an array of pointers to
  741. each row.  This function automatically handles interlacing, so you don't
  742. need to call png_set_interlace_handling() or call this function multiple
  743. times, or any of that other stuff necessary with png_write_rows().
  744.    png_write_image(png_ptr, row_pointers);
  745. where row_pointers is:
  746.    png_bytef *row_pointers[height];
  747. You can point to void or char or whatever you use for pixels.
  748. If you can't want to write the whole image at once, you can
  749. use png_write_rows() instead.  If the file is not interlaced,
  750. this is simple:
  751.    png_write_rows(png_ptr, row_pointers, number_of_rows);
  752. row_pointers is the same as in the png_write_image() call.
  753. If you are just calling one row at a time, you can do this for
  754. row_pointers:
  755. png_bytep row_pointers = row;
  756.    png_write_rows(png_ptr, &row_pointers, 1);
  757. When the file is interlaced, things can get a good deal more
  758. complicated.  The only currently (as of 12/95) defined interlacing
  759. scheme for PNG files is a compilcated interlace scheme, known as
  760. Adam7, that breaks down an image into seven smaller images of varying
  761. size.  libpng will build these images for you, or you can do them
  762. yourself.  If you want to build them yourself, see the PNG
  763. specification for details of which pixels to write when.
  764. If you don't want libpng to handle the interlacing details, just
  765. call png_write_rows() the correct number of times to write all
  766. seven sub-images.
  767. If you want libpng to build the sub-images, call this before you start
  768. writing any rows:
  769. number_passes = png_set_interlace_handling(png_ptr);
  770. This will return the number of passes needed.  Currently, this
  771. is seven, but may change if another interlace type is added.
  772. Then write the image number_passes times.
  773. png_write_rows(png_ptr, row_pointers, number_of_rows);
  774. As some of these rows are not used, and thus return immediately,
  775. you may want to read about interlacing in the PNG specification,
  776. and only update the rows that are actually used.
  777. After you are finished writing the image, you should finish writing
  778. the file.  If you are interested in writing comments or time, you should
  779. pass the an appropriately filled png_info pointer.  If you
  780. are not interested, you can pass NULL.  Be careful that you don't
  781. write the same text or time chunks here as you did in png_write_info().
  782. png_write_end(png_ptr, info_ptr);
  783. When you are done, you can free all memory used by libpng like this:
  784.    png_write_destroy(png_ptr);
  785. Any data you allocated for png_info, you must free yourself.
  786. After that, you can discard the structures, or reuse them another
  787. read or write.  For a more compact example of writing a PNG image,
  788. see the file example.c.
  789. V. Modifying/Customizing libpng:
  790. There are two issues here.  The first is changing how libpng does
  791. standard things like memory allocation, input/output, and error handling.
  792. The second deals with more complicated things like adding new chunks,
  793. adding new transformations, and generally changing how libpng works.
  794. All of the memory allocation, input/output, and error handling in libpng
  795. goes through callbacks which are user setable.  The default routines
  796. are in pngerror.c, pngmem.c, and pngio.c.  To change these functions,
  797. call the approprate _fn function.
  798. Memory allocation is done through the functions png_large_malloc(),
  799. png_malloc(), png_realloc(), png_large_free(), and png_free().
  800. These currently just call the standard C functions.  The large
  801. functions must handle exactly 64K, but they don't have to handle
  802. more then that.  If your pointers can't access more then 64K at a
  803. time, you will want to set MAXSEG_64K in zlib.h.  Since it is unlikely
  804. that the method of handling memory allocation on a platform will
  805. change between applications, these functions must be modified in the
  806. library at compile time.
  807. Input/Output in libpng is done throught png_read() and png_write(), which
  808. currently just call fread() and fwrite().  The FILE * is stored in
  809. png_struct, and is initialized via png_init_io().  If you wish to change
  810. the method of I/O, the library supplies callbacks that you can set through
  811. the function png_set_read_fn() and png_set_write_fn() at run time.  These
  812. functions also provide a void pointer that can be retrieved via the function
  813. png_get_io_ptr().  For example:
  814. png_set_read_fn(png_structp png_ptr, voidp io_ptr,
  815. png_rw_ptr read_data_fn)
  816. png_set_write_fn(png_structp png_ptr, voidp io_ptr,
  817. png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn);
  818. voidp io_ptr = png_get_io_ptr(png_ptr);
  819. The replacement I/O functions should have prototypes as follows:
  820. void user_read_data(png_structp png_ptr, png_bytep data,
  821. png_uint_32 length);
  822. void user_write_data(png_structp png_ptr, png_bytep data,
  823. png_uint_32 length);
  824. void user_flush_data(png_structp png_ptr);
  825. Supplying NULL for the read, write, or flush functions sets them back
  826. to using the default C stream functions.  It is an error to read from
  827. a write stream, and vice versa.
  828. Error handling in libpng is done through png_error() and png_warning().
  829. Errors handled through png_error() are fatal, meaning that png_error()
  830. should never return to it's caller.  Currently, this is handled via
  831. setjmp() and longjmp(), but you could change this to do things like
  832. exit() if you should wish.  On non-fatal errors, png_warning() is called
  833. to print a warning message, and then control returns to the calling code.
  834. By default png_error() and png_warning() print a message on stderr.  If
  835. you wish to change the behavior of the error functions, you will need to
  836. set up your own message callbacks.  You do this like the I/O callbacks above.
  837.   png_set_message_fn(png_structp png_ptr, png_voidp msg_ptr,
  838.   png_msg_ptr error_fn, png_msg_ptr warning_fn);
  839.   png_voidp msg_ptr = png_get_msg_ptr(png_ptr);
  840. The replacement message functions should have parameters as follows:
  841. void user_error_fn(png_struct png_ptr, png_const_charp error_msg);
  842. void user_warning_fn(png_struct png_ptr, png_const_charp warning_msg);
  843. The motivation behind using setjmp() and longjmp() is the C++ throw and
  844. catch exception handling methods.  This makes the code much easier to write,
  845. as there is no need to check every return code of every function call.
  846. However, there are some uncertainties about the status of local variables
  847. after a longjmp, so the user may want to be careful about doing anything after
  848. setjmp returns non zero besides returning itself.  Consult your compiler
  849. documentation for more details.
  850. If you need to read or write custom chunks, you will need to get deeper
  851. into the libpng code.  First, read the PNG specification, and have
  852. a first level of understanding of how it works.  Pay particular
  853. attention to the sections that describe chunk names, and look
  854. at how other chunks were designed, so you can do things similar.
  855. Second, check out the sections of libpng that read and write chunks.
  856. Try to find a chunk that is similar to yours, and copy off of it.
  857. More details can be found in the comments inside the code.
  858. If you wish to write your own transformation for the data, look
  859. through the part of the code that does the transformations, and check
  860. out some of the more simple ones to get an idea of how they work.  Try
  861. to find a similar transformation to the one you want to add, and copy
  862. off of it.  More details can be found in the comments inside the code
  863. itself.
  864. Configuring for 16 bit platforms:
  865. You may need to change the png_large_malloc() and
  866. png_large_free() routines in pngmem.c, as these are requred
  867. to allocate 64K.  Also, you will want to look into zconf.h to tell
  868. zlib (and thus libpng) that it cannot allocate more then 64K at a
  869. time.  Even if you can, the memory won't be accessable.  So limit zlib
  870. and libpng to 64K by defining MAXSEG_64K.
  871. Configuring for DOS:
  872. For DOS users which only have access to the lower 640K, you will
  873. have to limit zlib's memory usage via a png_set_compression_mem_level()
  874. call.  See zlib.h or zconf.h in the zlib library for more information.
  875. Configuring for Medium Model:
  876. Libpng's support for medium model has been tested on most of the popular
  877. complers.  Make sure MAXSEG_64K gets defined, USE_FAR_KEYWORD gets
  878. defined, and FAR gets defined to far in pngconf.h, and you should be
  879. all set.  Everything in the library (except for zlib's structure) is
  880. expecting far data.  You must use the typedefs with the p or pp on
  881. the end for pointers (or at least look at them and be careful).  Make
  882. note that the row's of data are defined as png_bytepp which is a
  883. unsigned char far * far *.
  884. Configuring for gui/windowing platforms:
  885. You will need to change the error message display in png_error() and
  886. png_warning() to display a message instead of fprinting it to stderr.
  887. You may want to write a single function to do this and call it something
  888. like png_message().  On some compliers, you may have to change the
  889. memory allocators (png_malloc, etc.).
  890. Configuring for compiler xxx:
  891. All includes for libpng are in pngconf.h.  If you need to add/change/delete
  892. an include, this is the place to do it.  The includes that are not
  893. needed outside libpng are protected by the PNG_INTERNAL definition,
  894. which is only defined for those routines inside libpng itself.  The
  895. files in libpng proper only include png.h, which includes pngconf.h.
  896. Configuring zlib:
  897. There are special functions to configure the compression.  Perhaps
  898. the most useful one changes the compression level.  The library
  899. normally uses the default compression level, but for maximum
  900. compression (9) or maximum speed (1), you may desire to change the
  901. level.  You do this by calling:
  902. png_set_compression_mem_level(png_ptr, level);
  903. Another useful one is to reduce the memory level used by the library.
  904. The memory level defaults to 8, but it can be lowered if you are
  905. short on memory (running DOS, for example, where you only have 640K).
  906. png_set_compression_mem_level(png_ptr, level);
  907. If you want to control whether libpng uses filtering or not, you
  908. can call this function.  I recommend not changing the default unless
  909. you are experimenting with compression ratios.
  910. png_set_filtering(png_ptr, use_filter);
  911. The other functions are for configuring zlib.  They are not recommended
  912. for normal use and may result in writing an invalid png file.  See
  913. zlib.h for more information on what these mean.
  914. png_set_compression_strategy(png_ptr, strategy);
  915. png_set_compression_window_bits(png_ptr, window_bits);
  916. png_set_compression_method(png_ptr, method);
  917. Except for png_set_filtering(), all of these are just controlling
  918. zlib, so see the zlib documentation (zlib.h and zconf.h) for more
  919. information.
  920. Removing unwanted object code:
  921. There are a bunch of #define's in pngconf.h that control what parts of
  922. libpng are compiled.  All the defines end in _SUPPORT.  If you are
  923. never going to use an ability, you can change the #define to #undef and
  924. save yourself code and data space.  All the reading and writing
  925. specific code are in seperate files, so the linker should only grab
  926. the files it needs.  However, if you want to make sure, or if you
  927. are building a stand alone library, all the reading files start with
  928. pngr and all the writing files start with pngw.  The files that
  929. don't match either (like png.c, pngtrans.c, etc.) are used for
  930. both reading and writing, and always need to be included.  The
  931. progressive reader is in pngpread.c