libpng.3
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:168k
源码类别:

界面编程

开发平台:

Visual C++

  1. mentioned in the PNG specification is to expand each pixel to cover
  2. those pixels that have not been read yet (the "rectangle" method).
  3. This results in a blocky image for the first pass, which gradually
  4. smooths out as more pixels are read.  The other method is the "sparkle"
  5. method, where pixels are drawn only in their final locations, with the
  6. rest of the image remaining whatever colors they were initialized to
  7. before the start of the read.  The first method usually looks better,
  8. but tends to be slower, as there are more pixels to put in the rows.
  9. If you don't want libpng to handle the interlacing details, just call
  10. png_read_rows() seven times to read in all seven images.  Each of the
  11. images is a valid image by itself, or they can all be combined on an
  12. 8x8 grid to form a single image (although if you intend to combine them
  13. you would be far better off using the libpng interlace handling).
  14. The first pass will return an image 1/8 as wide as the entire image
  15. (every 8th column starting in column 0) and 1/8 as high as the original
  16. (every 8th row starting in row 0), the second will be 1/8 as wide
  17. (starting in column 4) and 1/8 as high (also starting in row 0).  The
  18. third pass will be 1/4 as wide (every 4th pixel starting in column 0) and
  19. 1/8 as high (every 8th row starting in row 4), and the fourth pass will
  20. be 1/4 as wide and 1/4 as high (every 4th column starting in column 2,
  21. and every 4th row starting in row 0).  The fifth pass will return an
  22. image 1/2 as wide, and 1/4 as high (starting at column 0 and row 2),
  23. while the sixth pass will be 1/2 as wide and 1/2 as high as the original
  24. (starting in column 1 and row 0).  The seventh and final pass will be as
  25. wide as the original, and 1/2 as high, containing all of the odd
  26. numbered scanlines.  Phew!
  27. If you want libpng to expand the images, call this before calling
  28. png_start_read_image() or png_read_update_info():
  29.     if (interlace_type == PNG_INTERLACE_ADAM7)
  30.         number_of_passes
  31.            = png_set_interlace_handling(png_ptr);
  32. This will return the number of passes needed.  Currently, this
  33. is seven, but may change if another interlace type is added.
  34. This function can be called even if the file is not interlaced,
  35. where it will return one pass.
  36. If you are not going to display the image after each pass, but are
  37. going to wait until the entire image is read in, use the sparkle
  38. effect.  This effect is faster and the end result of either method
  39. is exactly the same.  If you are planning on displaying the image
  40. after each pass, the "rectangle" effect is generally considered the
  41. better looking one.
  42. If you only want the "sparkle" effect, just call png_read_rows() as
  43. normal, with the third parameter NULL.  Make sure you make pass over
  44. the image number_of_passes times, and you don't change the data in the
  45. rows between calls.  You can change the locations of the data, just
  46. not the data.  Each pass only writes the pixels appropriate for that
  47. pass, and assumes the data from previous passes is still valid.
  48.     png_read_rows(png_ptr, row_pointers, NULL,
  49.        number_of_rows);
  50. If you only want the first effect (the rectangles), do the same as
  51. before except pass the row buffer in the third parameter, and leave
  52. the second parameter NULL.
  53.     png_read_rows(png_ptr, NULL, row_pointers,
  54.        number_of_rows);
  55. .SS Finishing a sequential read
  56. After you are finished reading the image through the
  57. low-level interface, you can finish reading the file.  If you are
  58. interested in comments or time, which may be stored either before or
  59. after the image data, you should pass the separate png_info struct if
  60. you want to keep the comments from before and after the image
  61. separate.  If you are not interested, you can pass NULL.
  62.    png_read_end(png_ptr, end_info);
  63. When you are done, you can free all memory allocated by libpng like this:
  64.    png_destroy_read_struct(&png_ptr, &info_ptr,
  65.        &end_info);
  66. It is also possible to individually free the info_ptr members that
  67. point to libpng-allocated storage with the following function:
  68.     png_free_data(png_ptr, info_ptr, mask, seq)
  69.     mask - identifies data to be freed, a mask
  70.            containing the bitwise OR of one or
  71.            more of
  72.              PNG_FREE_PLTE, PNG_FREE_TRNS,
  73.              PNG_FREE_HIST, PNG_FREE_ICCP,
  74.              PNG_FREE_PCAL, PNG_FREE_ROWS,
  75.              PNG_FREE_SCAL, PNG_FREE_SPLT,
  76.              PNG_FREE_TEXT, PNG_FREE_UNKN,
  77.            or simply PNG_FREE_ALL
  78.     seq  - sequence number of item to be freed
  79.            (-1 for all items)
  80. This function may be safely called when the relevant storage has
  81. already been freed, or has not yet been allocated, or was allocated
  82. by the user and not by libpng,  and will in those
  83. cases do nothing.  The "seq" parameter is ignored if only one item
  84. of the selected data type, such as PLTE, is allowed.  If "seq" is not
  85. -1, and multiple items are allowed for the data type identified in
  86. the mask, such as text or sPLT, only the n'th item in the structure
  87. is freed, where n is "seq".
  88. The default behavior is only to free data that was allocated internally
  89. by libpng.  This can be changed, so that libpng will not free the data,
  90. or so that it will free data that was allocated by the user with png_malloc()
  91. or png_zalloc() and passed in via a png_set_*() function, with
  92.     png_data_freer(png_ptr, info_ptr, freer, mask)
  93.     mask   - which data elements are affected
  94.              same choices as in png_free_data()
  95.     freer  - one of
  96.                PNG_DESTROY_WILL_FREE_DATA
  97.                PNG_SET_WILL_FREE_DATA
  98.                PNG_USER_WILL_FREE_DATA
  99. This function only affects data that has already been allocated.
  100. You can call this function after reading the PNG data but before calling
  101. any png_set_*() functions, to control whether the user or the png_set_*()
  102. function is responsible for freeing any existing data that might be present,
  103. and again after the png_set_*() functions to control whether the user
  104. or png_destroy_*() is supposed to free the data.  When the user assumes
  105. responsibility for libpng-allocated data, the application must use
  106. png_free() to free it, and when the user transfers responsibility to libpng
  107. for data that the user has allocated, the user must have used png_malloc()
  108. or png_zalloc() to allocate it.
  109. If you allocated your row_pointers in a single block, as suggested above in
  110. the description of the high level read interface, you must not transfer
  111. responsibility for freeing it to the png_set_rows or png_read_destroy function,
  112. because they would also try to free the individual row_pointers[i].
  113. If you allocated text_ptr.text, text_ptr.lang, and text_ptr.translated_keyword
  114. separately, do not transfer responsibility for freeing text_ptr to libpng,
  115. because when libpng fills a png_text structure it combines these members with
  116. the key member, and png_free_data() will free only text_ptr.key.  Similarly,
  117. if you transfer responsibility for free'ing text_ptr from libpng to your
  118. application, your application must not separately free those members.
  119. The png_free_data() function will turn off the "valid" flag for anything
  120. it frees.  If you need to turn the flag off for a chunk that was freed by your
  121. application instead of by libpng, you can use
  122.     png_set_invalid(png_ptr, info_ptr, mask);
  123.     mask - identifies the chunks to be made invalid,
  124.            containing the bitwise OR of one or
  125.            more of
  126.              PNG_INFO_gAMA, PNG_INFO_sBIT,
  127.              PNG_INFO_cHRM, PNG_INFO_PLTE,
  128.              PNG_INFO_tRNS, PNG_INFO_bKGD,
  129.              PNG_INFO_hIST, PNG_INFO_pHYs,
  130.              PNG_INFO_oFFs, PNG_INFO_tIME,
  131.              PNG_INFO_pCAL, PNG_INFO_sRGB,
  132.              PNG_INFO_iCCP, PNG_INFO_sPLT,
  133.              PNG_INFO_sCAL, PNG_INFO_IDAT
  134. For a more compact example of reading a PNG image, see the file example.c.
  135. .SS Reading PNG files progressively
  136. The progressive reader is slightly different then the non-progressive
  137. reader.  Instead of calling png_read_info(), png_read_rows(), and
  138. png_read_end(), you make one call to png_process_data(), which calls
  139. callbacks when it has the info, a row, or the end of the image.  You
  140. set up these callbacks with png_set_progressive_read_fn().  You don't
  141. have to worry about the input/output functions of libpng, as you are
  142. giving the library the data directly in png_process_data().  I will
  143. assume that you have read the section on reading PNG files above,
  144. so I will only highlight the differences (although I will show
  145. all of the code).
  146. png_structp png_ptr;
  147. png_infop info_ptr;
  148.  /*  An example code fragment of how you would
  149.      initialize the progressive reader in your
  150.      application. */
  151.  int
  152.  initialize_png_reader()
  153.  {
  154.     png_ptr = png_create_read_struct
  155.         (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
  156.          user_error_fn, user_warning_fn);
  157.     if (!png_ptr)
  158.         return (ERROR);
  159.     info_ptr = png_create_info_struct(png_ptr);
  160.     if (!info_ptr)
  161.     {
  162.         png_destroy_read_struct(&png_ptr, (png_infopp)NULL,
  163.            (png_infopp)NULL);
  164.         return (ERROR);
  165.     }
  166.     if (setjmp(png_jmpbuf(png_ptr)))
  167.     {
  168.         png_destroy_read_struct(&png_ptr, &info_ptr,
  169.            (png_infopp)NULL);
  170.         return (ERROR);
  171.     }
  172.     /* This one's new.  You can provide functions
  173.        to be called when the header info is valid,
  174.        when each row is completed, and when the image
  175.        is finished.  If you aren't using all functions,
  176.        you can specify NULL parameters.  Even when all
  177.        three functions are NULL, you need to call
  178.        png_set_progressive_read_fn().  You can use
  179.        any struct as the user_ptr (cast to a void pointer
  180.        for the function call), and retrieve the pointer
  181.        from inside the callbacks using the function
  182.           png_get_progressive_ptr(png_ptr);
  183.        which will return a void pointer, which you have
  184.        to cast appropriately.
  185.      */
  186.     png_set_progressive_read_fn(png_ptr, (void *)user_ptr,
  187.         info_callback, row_callback, end_callback);
  188.     return 0;
  189.  }
  190.  /* A code fragment that you call as you receive blocks
  191.    of data */
  192.  int
  193.  process_data(png_bytep buffer, png_uint_32 length)
  194.  {
  195.     if (setjmp(png_jmpbuf(png_ptr)))
  196.     {
  197.         png_destroy_read_struct(&png_ptr, &info_ptr,
  198.            (png_infopp)NULL);
  199.         return (ERROR);
  200.     }
  201.     /* This one's new also.  Simply give it a chunk
  202.        of data from the file stream (in order, of
  203.        course).  On machines with segmented memory
  204.        models machines, don't give it any more than
  205.        64K.  The library seems to run fine with sizes
  206.        of 4K. Although you can give it much less if
  207.        necessary (I assume you can give it chunks of
  208.        1 byte, I haven't tried less then 256 bytes
  209.        yet).  When this function returns, you may
  210.        want to display any rows that were generated
  211.        in the row callback if you don't already do
  212.        so there.
  213.      */
  214.     png_process_data(png_ptr, info_ptr, buffer, length);
  215.     return 0;
  216.  }
  217.  /* This function is called (as set by
  218.     png_set_progressive_read_fn() above) when enough data
  219.     has been supplied so all of the header has been
  220.     read.
  221.  */
  222.  void
  223.  info_callback(png_structp png_ptr, png_infop info)
  224.  {
  225.     /* Do any setup here, including setting any of
  226.        the transformations mentioned in the Reading
  227.        PNG files section.  For now, you _must_ call
  228.        either png_start_read_image() or
  229.        png_read_update_info() after all the
  230.        transformations are set (even if you don't set
  231.        any).  You may start getting rows before
  232.        png_process_data() returns, so this is your
  233.        last chance to prepare for that.
  234.      */
  235.  }
  236.  /* This function is called when each row of image
  237.     data is complete */
  238.  void
  239.  row_callback(png_structp png_ptr, png_bytep new_row,
  240.     png_uint_32 row_num, int pass)
  241.  {
  242.     /* If the image is interlaced, and you turned
  243.        on the interlace handler, this function will
  244.        be called for every row in every pass.  Some
  245.        of these rows will not be changed from the
  246.        previous pass.  When the row is not changed,
  247.        the new_row variable will be NULL.  The rows
  248.        and passes are called in order, so you don't
  249.        really need the row_num and pass, but I'm
  250.        supplying them because it may make your life
  251.        easier.
  252.        For the non-NULL rows of interlaced images,
  253.        you must call png_progressive_combine_row()
  254.        passing in the row and the old row.  You can
  255.        call this function for NULL rows (it will just
  256.        return) and for non-interlaced images (it just
  257.        does the memcpy for you) if it will make the
  258.        code easier.  Thus, you can just do this for
  259.        all cases:
  260.      */
  261.         png_progressive_combine_row(png_ptr, old_row,
  262.           new_row);
  263.     /* where old_row is what was displayed for
  264.        previously for the row.  Note that the first
  265.        pass (pass == 0, really) will completely cover
  266.        the old row, so the rows do not have to be
  267.        initialized.  After the first pass (and only
  268.        for interlaced images), you will have to pass
  269.        the current row, and the function will combine
  270.        the old row and the new row.
  271.     */
  272.  }
  273.  void
  274.  end_callback(png_structp png_ptr, png_infop info)
  275.  {
  276.     /* This function is called after the whole image
  277.        has been read, including any chunks after the
  278.        image (up to and including the IEND).  You
  279.        will usually have the same info chunk as you
  280.        had in the header, although some data may have
  281.        been added to the comments and time fields.
  282.        Most people won't do much here, perhaps setting
  283.        a flag that marks the image as finished.
  284.      */
  285.  }
  286. .SH IV. Writing
  287. Much of this is very similar to reading.  However, everything of
  288. importance is repeated here, so you won't have to constantly look
  289. back up in the reading section to understand writing.
  290. .SS Setup
  291. You will want to do the I/O initialization before you get into libpng,
  292. so if it doesn't work, you don't have anything to undo. If you are not
  293. using the standard I/O functions, you will need to replace them with
  294. custom writing functions.  See the discussion under Customizing libpng.
  295.     FILE *fp = fopen(file_name, "wb");
  296.     if (!fp)
  297.     {
  298.        return (ERROR);
  299.     }
  300. Next, png_struct and png_info need to be allocated and initialized.
  301. As these can be both relatively large, you may not want to store these
  302. on the stack, unless you have stack space to spare.  Of course, you
  303. will want to check if they return NULL.  If you are also reading,
  304. you won't want to name your read structure and your write structure
  305. both "png_ptr"; you can call them anything you like, such as
  306. "read_ptr" and "write_ptr".  Look at pngtest.c, for example.
  307.     png_structp png_ptr = png_create_write_struct
  308.        (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
  309.         user_error_fn, user_warning_fn);
  310.     if (!png_ptr)
  311.        return (ERROR);
  312.     png_infop info_ptr = png_create_info_struct(png_ptr);
  313.     if (!info_ptr)
  314.     {
  315.        png_destroy_write_struct(&png_ptr,
  316.          (png_infopp)NULL);
  317.        return (ERROR);
  318.     }
  319. If you want to use your own memory allocation routines,
  320. define PNG_USER_MEM_SUPPORTED and use
  321. png_create_write_struct_2() instead of png_create_write_struct():
  322.     png_structp png_ptr = png_create_write_struct_2
  323.        (PNG_LIBPNG_VER_STRING, (png_voidp)user_error_ptr,
  324.         user_error_fn, user_warning_fn, (png_voidp)
  325.         user_mem_ptr, user_malloc_fn, user_free_fn);
  326. After you have these structures, you will need to set up the
  327. error handling.  When libpng encounters an error, it expects to
  328. longjmp() back to your routine.  Therefore, you will need to call
  329. setjmp() and pass the png_jmpbuf(png_ptr).  If you
  330. write the file from different routines, you will need to update
  331. the png_jmpbuf(png_ptr) every time you enter a new routine that will
  332. call a png_*() function.  See your documentation of setjmp/longjmp
  333. for your compiler for more information on setjmp/longjmp.  See
  334. the discussion on libpng error handling in the Customizing Libpng
  335. section below for more information on the libpng error handling.
  336.     if (setjmp(png_jmpbuf(png_ptr)))
  337.     {
  338.        png_destroy_write_struct(&png_ptr, &info_ptr);
  339.        fclose(fp);
  340.        return (ERROR);
  341.     }
  342.     ...
  343.     return;
  344. If you would rather avoid the complexity of setjmp/longjmp issues,
  345. you can compile libpng with PNG_SETJMP_NOT_SUPPORTED, in which case
  346. errors will result in a call to PNG_ABORT() which defaults to abort().
  347. Now you need to set up the output code.  The default for libpng is to
  348. use the C function fwrite().  If you use this, you will need to pass a
  349. valid FILE * in the function png_init_io().  Be sure that the file is
  350. opened in binary mode.  Again, if you wish to handle writing data in
  351. another way, see the discussion on libpng I/O handling in the Customizing
  352. Libpng section below.
  353.     png_init_io(png_ptr, fp);
  354. If you are embedding your PNG into a datastream such as MNG, and don't
  355. want libpng to write the 8-byte signature, or if you have already
  356. written the signature in your application, use
  357.     png_set_sig_bytes(png_ptr, 8);
  358. to inform libpng that it should not write a signature.
  359. .SS Write callbacks
  360. At this point, you can set up a callback function that will be
  361. called after each row has been written, which you can use to control
  362. a progress meter or the like.  It's demonstrated in pngtest.c.
  363. You must supply a function
  364.     void write_row_callback(png_ptr, png_uint_32 row,
  365.        int pass);
  366.     {
  367.       /* put your code here */
  368.     }
  369. (You can give it another name that you like instead of "write_row_callback")
  370. To inform libpng about your function, use
  371.     png_set_write_status_fn(png_ptr, write_row_callback);
  372. You now have the option of modifying how the compression library will
  373. run.  The following functions are mainly for testing, but may be useful
  374. in some cases, like if you need to write PNG files extremely fast and
  375. are willing to give up some compression, or if you want to get the
  376. maximum possible compression at the expense of slower writing.  If you
  377. have no special needs in this area, let the library do what it wants by
  378. not calling this function at all, as it has been tuned to deliver a good
  379. speed/compression ratio. The second parameter to png_set_filter() is
  380. the filter method, for which the only valid values are 0 (as of the
  381. July 1999 PNG specification, version 1.2) or 64 (if you are writing
  382. a PNG datastream that is to be embedded in a MNG datastream).  The third
  383. parameter is a flag that indicates which filter type(s) are to be tested
  384. for each scanline.  See the PNG specification for details on the specific filter
  385. types.
  386.     /* turn on or off filtering, and/or choose
  387.        specific filters.  You can use either a single
  388.        PNG_FILTER_VALUE_NAME or the bitwise OR of one
  389.        or more PNG_FILTER_NAME masks. */
  390.     png_set_filter(png_ptr, 0,
  391.        PNG_FILTER_NONE  | PNG_FILTER_VALUE_NONE |
  392.        PNG_FILTER_SUB   | PNG_FILTER_VALUE_SUB  |
  393.        PNG_FILTER_UP    | PNG_FILTER_VALUE_UP   |
  394.        PNG_FILTER_AVE   | PNG_FILTER_VALUE_AVE  |
  395.        PNG_FILTER_PAETH | PNG_FILTER_VALUE_PAETH|
  396.        PNG_ALL_FILTERS);
  397. If an application
  398. wants to start and stop using particular filters during compression,
  399. it should start out with all of the filters (to ensure that the previous
  400. row of pixels will be stored in case it's needed later), and then add
  401. and remove them after the start of compression.
  402. If you are writing a PNG datastream that is to be embedded in a MNG
  403. datastream, the second parameter can be either 0 or 64.
  404. The png_set_compression_*() functions interface to the zlib compression
  405. library, and should mostly be ignored unless you really know what you are
  406. doing.  The only generally useful call is png_set_compression_level()
  407. which changes how much time zlib spends on trying to compress the image
  408. data.  See the Compression Library (zlib.h and algorithm.txt, distributed
  409. with zlib) for details on the compression levels.
  410.     /* set the zlib compression level */
  411.     png_set_compression_level(png_ptr,
  412.         Z_BEST_COMPRESSION);
  413.     /* set other zlib parameters */
  414.     png_set_compression_mem_level(png_ptr, 8);
  415.     png_set_compression_strategy(png_ptr,
  416.         Z_DEFAULT_STRATEGY);
  417.     png_set_compression_window_bits(png_ptr, 15);
  418.     png_set_compression_method(png_ptr, 8);
  419.     png_set_compression_buffer_size(png_ptr, 8192)
  420. extern PNG_EXPORT(void,png_set_zbuf_size)
  421. .SS Setting the contents of info for output
  422. You now need to fill in the png_info structure with all the data you
  423. wish to write before the actual image.  Note that the only thing you
  424. are allowed to write after the image is the text chunks and the time
  425. chunk (as of PNG Specification 1.2, anyway).  See png_write_end() and
  426. the latest PNG specification for more information on that.  If you
  427. wish to write them before the image, fill them in now, and flag that
  428. data as being valid.  If you want to wait until after the data, don't
  429. fill them until png_write_end().  For all the fields in png_info and
  430. their data types, see png.h.  For explanations of what the fields
  431. contain, see the PNG specification.
  432. Some of the more important parts of the png_info are:
  433.     png_set_IHDR(png_ptr, info_ptr, width, height,
  434.        bit_depth, color_type, interlace_type,
  435.        compression_type, filter_method)
  436.     width          - holds the width of the image
  437.                      in pixels (up to 2^31).
  438.     height         - holds the height of the image
  439.                      in pixels (up to 2^31).
  440.     bit_depth      - holds the bit depth of one of the
  441.                      image channels.
  442.                      (valid values are 1, 2, 4, 8, 16
  443.                      and depend also on the
  444.                      color_type.  See also significant
  445.                      bits (sBIT) below).
  446.     color_type     - describes which color/alpha
  447.                      channels are present.
  448.                      PNG_COLOR_TYPE_GRAY
  449.                         (bit depths 1, 2, 4, 8, 16)
  450.                      PNG_COLOR_TYPE_GRAY_ALPHA
  451.                         (bit depths 8, 16)
  452.                      PNG_COLOR_TYPE_PALETTE
  453.                         (bit depths 1, 2, 4, 8)
  454.                      PNG_COLOR_TYPE_RGB
  455.                         (bit_depths 8, 16)
  456.                      PNG_COLOR_TYPE_RGB_ALPHA
  457.                         (bit_depths 8, 16)
  458.                      PNG_COLOR_MASK_PALETTE
  459.                      PNG_COLOR_MASK_COLOR
  460.                      PNG_COLOR_MASK_ALPHA
  461.     interlace_type - PNG_INTERLACE_NONE or
  462.                      PNG_INTERLACE_ADAM7
  463.     compression_type - (must be
  464.                      PNG_COMPRESSION_TYPE_DEFAULT)
  465.     filter_method  - (must be PNG_FILTER_TYPE_DEFAULT
  466.                      or, if you are writing a PNG to
  467.                      be embedded in a MNG datastream,
  468.                      can also be
  469.                      PNG_INTRAPIXEL_DIFFERENCING)
  470. If you call png_set_IHDR(), the call must appear before any of the
  471. other png_set_*() functions, which might require access to some of
  472. the IHDR settings.  The remaining png_set_*() functions can be called
  473. in any order.
  474.     png_set_PLTE(png_ptr, info_ptr, palette,
  475.        num_palette);
  476.     palette        - the palette for the file
  477.                      (array of png_color)
  478.     num_palette    - number of entries in the palette
  479.     png_set_gAMA(png_ptr, info_ptr, gamma);
  480.     gamma          - the gamma the image was created
  481.                      at (PNG_INFO_gAMA)
  482.     png_set_sRGB(png_ptr, info_ptr, srgb_intent);
  483.     srgb_intent    - the rendering intent
  484.                      (PNG_INFO_sRGB) The presence of
  485.                      the sRGB chunk means that the pixel
  486.                      data is in the sRGB color space.
  487.                      This chunk also implies specific
  488.                      values of gAMA and cHRM.  Rendering
  489.                      intent is the CSS-1 property that
  490.                      has been defined by the International
  491.                      Color Consortium
  492.                      (http://www.color.org).
  493.                      It can be one of
  494.                      PNG_sRGB_INTENT_SATURATION,
  495.                      PNG_sRGB_INTENT_PERCEPTUAL,
  496.                      PNG_sRGB_INTENT_ABSOLUTE, or
  497.                      PNG_sRGB_INTENT_RELATIVE.
  498.     png_set_sRGB_gAMA_and_cHRM(png_ptr, info_ptr,
  499.        srgb_intent);
  500.     srgb_intent    - the rendering intent
  501.                      (PNG_INFO_sRGB) The presence of the
  502.                      sRGB chunk means that the pixel
  503.                      data is in the sRGB color space.
  504.                      This function also causes gAMA and
  505.                      cHRM chunks with the specific values
  506.                      that are consistent with sRGB to be
  507.                      written.
  508.     png_set_iCCP(png_ptr, info_ptr, name, compression_type,
  509.                       profile, proflen);
  510.     name            - The profile name.
  511.     compression     - The compression type; always
  512.                       PNG_COMPRESSION_TYPE_BASE for PNG 1.0.
  513.                       You may give NULL to this argument to
  514.                       ignore it.
  515.     profile         - International Color Consortium color
  516.                       profile data. May contain NULs.
  517.     proflen         - length of profile data in bytes.
  518.     png_set_sBIT(png_ptr, info_ptr, sig_bit);
  519.     sig_bit        - the number of significant bits for
  520.                      (PNG_INFO_sBIT) each of the gray, red,
  521.                      green, and blue channels, whichever are
  522.                      appropriate for the given color type
  523.                      (png_color_16)
  524.     png_set_tRNS(png_ptr, info_ptr, trans, num_trans,
  525.        trans_values);
  526.     trans          - array of transparent entries for
  527.                      palette (PNG_INFO_tRNS)
  528.     trans_values   - graylevel or color sample values of
  529.                      the single transparent color for
  530.                      non-paletted images (PNG_INFO_tRNS)
  531.     num_trans      - number of transparent entries
  532.                      (PNG_INFO_tRNS)
  533.     png_set_hIST(png_ptr, info_ptr, hist);
  534.                     (PNG_INFO_hIST)
  535.     hist           - histogram of palette (array of
  536.                      png_uint_16)
  537.     png_set_tIME(png_ptr, info_ptr, mod_time);
  538.     mod_time       - time image was last modified
  539.                      (PNG_VALID_tIME)
  540.     png_set_bKGD(png_ptr, info_ptr, background);
  541.     background     - background color (PNG_VALID_bKGD)
  542.     png_set_text(png_ptr, info_ptr, text_ptr, num_text);
  543.     text_ptr       - array of png_text holding image
  544.                      comments
  545.     text_ptr[i].compression - type of compression used
  546.                  on "text" PNG_TEXT_COMPRESSION_NONE
  547.                            PNG_TEXT_COMPRESSION_zTXt
  548.                            PNG_ITXT_COMPRESSION_NONE
  549.                            PNG_ITXT_COMPRESSION_zTXt
  550.     text_ptr[i].key   - keyword for comment.  Must contain
  551.                  1-79 characters.
  552.     text_ptr[i].text  - text comments for current
  553.                          keyword.  Can be NULL or empty.
  554.     text_ptr[i].text_length - length of text string,
  555.                  after decompression, 0 for iTXt
  556.     text_ptr[i].itxt_length - length of itxt string,
  557.                  after decompression, 0 for tEXt/zTXt
  558.     text_ptr[i].lang  - language of comment (NULL or
  559.                          empty for unknown).
  560.     text_ptr[i].translated_keyword  - keyword in UTF-8 (NULL
  561.                          or empty for unknown).
  562.     num_text       - number of comments
  563.     png_set_sPLT(png_ptr, info_ptr, &palette_ptr,
  564.        num_spalettes);
  565.     palette_ptr    - array of png_sPLT_struct structures
  566.                      to be added to the list of palettes
  567.                      in the info structure.
  568.     num_spalettes  - number of palette structures to be
  569.                      added.
  570.     png_set_oFFs(png_ptr, info_ptr, offset_x, offset_y,
  571.         unit_type);
  572.     offset_x  - positive offset from the left
  573.                      edge of the screen
  574.     offset_y  - positive offset from the top
  575.                      edge of the screen
  576.     unit_type - PNG_OFFSET_PIXEL, PNG_OFFSET_MICROMETER
  577.     png_set_pHYs(png_ptr, info_ptr, res_x, res_y,
  578.         unit_type);
  579.     res_x       - pixels/unit physical resolution
  580.                   in x direction
  581.     res_y       - pixels/unit physical resolution
  582.                   in y direction
  583.     unit_type   - PNG_RESOLUTION_UNKNOWN,
  584.                   PNG_RESOLUTION_METER
  585.     png_set_sCAL(png_ptr, info_ptr, unit, width, height)
  586.     unit        - physical scale units (an integer)
  587.     width       - width of a pixel in physical scale units
  588.     height      - height of a pixel in physical scale units
  589.                   (width and height are doubles)
  590.     png_set_sCAL_s(png_ptr, info_ptr, unit, width, height)
  591.     unit        - physical scale units (an integer)
  592.     width       - width of a pixel in physical scale units
  593.     height      - height of a pixel in physical scale units
  594.                  (width and height are strings like "2.54")
  595.     png_set_unknown_chunks(png_ptr, info_ptr, &unknowns,
  596.        num_unknowns)
  597.     unknowns          - array of png_unknown_chunk
  598.                         structures holding unknown chunks
  599.     unknowns[i].name  - name of unknown chunk
  600.     unknowns[i].data  - data of unknown chunk
  601.     unknowns[i].size  - size of unknown chunk's data
  602.     unknowns[i].location - position to write chunk in file
  603.                            0: do not write chunk
  604.                            PNG_HAVE_IHDR: before PLTE
  605.                            PNG_HAVE_PLTE: before IDAT
  606.                            PNG_AFTER_IDAT: after IDAT
  607. The "location" member is set automatically according to
  608. what part of the output file has already been written.
  609. You can change its value after calling png_set_unknown_chunks()
  610. as demonstrated in pngtest.c.  Within each of the "locations",
  611. the chunks are sequenced according to their position in the
  612. structure (that is, the value of "i", which is the order in which
  613. the chunk was either read from the input file or defined with
  614. png_set_unknown_chunks).
  615. A quick word about text and num_text.  text is an array of png_text
  616. structures.  num_text is the number of valid structures in the array.
  617. Each png_text structure holds a language code, a keyword, a text value,
  618. and a compression type.
  619. The compression types have the same valid numbers as the compression
  620. types of the image data.  Currently, the only valid number is zero.
  621. However, you can store text either compressed or uncompressed, unlike
  622. images, which always have to be compressed.  So if you don't want the
  623. text compressed, set the compression type to PNG_TEXT_COMPRESSION_NONE.
  624. Because tEXt and zTXt chunks don't have a language field, if you
  625. specify PNG_TEXT_COMPRESSION_NONE or PNG_TEXT_COMPRESSION_zTXt
  626. any language code or translated keyword will not be written out.
  627. Until text gets around 1000 bytes, it is not worth compressing it.
  628. After the text has been written out to the file, the compression type
  629. is set to PNG_TEXT_COMPRESSION_NONE_WR or PNG_TEXT_COMPRESSION_zTXt_WR,
  630. so that it isn't written out again at the end (in case you are calling
  631. png_write_end() with the same struct.
  632. The keywords that are given in the PNG Specification are:
  633.     Title            Short (one line) title or
  634.                      caption for image
  635.     Author           Name of image's creator
  636.     Description      Description of image (possibly long)
  637.     Copyright        Copyright notice
  638.     Creation Time    Time of original image creation
  639.                      (usually RFC 1123 format, see below)
  640.     Software         Software used to create the image
  641.     Disclaimer       Legal disclaimer
  642.     Warning          Warning of nature of content
  643.     Source           Device used to create the image
  644.     Comment          Miscellaneous comment; conversion
  645.                      from other image format
  646. The keyword-text pairs work like this.  Keywords should be short
  647. simple descriptions of what the comment is about.  Some typical
  648. keywords are found in the PNG specification, as is some recommendations
  649. on keywords.  You can repeat keywords in a file.  You can even write
  650. some text before the image and some after.  For example, you may want
  651. to put a description of the image before the image, but leave the
  652. disclaimer until after, so viewers working over modem connections
  653. don't have to wait for the disclaimer to go over the modem before
  654. they start seeing the image.  Finally, keywords should be full
  655. words, not abbreviations.  Keywords and text are in the ISO 8859-1
  656. (Latin-1) character set (a superset of regular ASCII) and can not
  657. contain NUL characters, and should not contain control or other
  658. unprintable characters.  To make the comments widely readable, stick
  659. with basic ASCII, and avoid machine specific character set extensions
  660. like the IBM-PC character set.  The keyword must be present, but
  661. you can leave off the text string on non-compressed pairs.
  662. Compressed pairs must have a text string, as only the text string
  663. is compressed anyway, so the compression would be meaningless.
  664. PNG supports modification time via the png_time structure.  Two
  665. conversion routines are provided, png_convert_from_time_t() for
  666. time_t and png_convert_from_struct_tm() for struct tm.  The
  667. time_t routine uses gmtime().  You don't have to use either of
  668. these, but if you wish to fill in the png_time structure directly,
  669. you should provide the time in universal time (GMT) if possible
  670. instead of your local time.  Note that the year number is the full
  671. year (e.g. 1998, rather than 98 - PNG is year 2000 compliant!), and
  672. that months start with 1.
  673. If you want to store the time of the original image creation, you should
  674. use a plain tEXt chunk with the "Creation Time" keyword.  This is
  675. necessary because the "creation time" of a PNG image is somewhat vague,
  676. depending on whether you mean the PNG file, the time the image was
  677. created in a non-PNG format, a still photo from which the image was
  678. scanned, or possibly the subject matter itself.  In order to facilitate
  679. machine-readable dates, it is recommended that the "Creation Time"
  680. tEXt chunk use RFC 1123 format dates (e.g. "22 May 1997 18:07:10 GMT"),
  681. although this isn't a requirement.  Unlike the tIME chunk, the
  682. "Creation Time" tEXt chunk is not expected to be automatically changed
  683. by the software.  To facilitate the use of RFC 1123 dates, a function
  684. png_convert_to_rfc1123(png_timep) is provided to convert from PNG
  685. time to an RFC 1123 format string.
  686. .SS Writing unknown chunks
  687. You can use the png_set_unknown_chunks function to queue up chunks
  688. for writing.  You give it a chunk name, raw data, and a size; that's
  689. all there is to it.  The chunks will be written by the next following
  690. png_write_info_before_PLTE, png_write_info, or png_write_end function.
  691. Any chunks previously read into the info structure's unknown-chunk
  692. list will also be written out in a sequence that satisfies the PNG
  693. specification's ordering rules.
  694. .SS The high-level write interface
  695. At this point there are two ways to proceed; through the high-level
  696. write interface, or through a sequence of low-level write operations.
  697. You can use the high-level interface if your image data is present
  698. in the info structure.  All defined output
  699. transformations are permitted, enabled by the following masks.
  700.     PNG_TRANSFORM_IDENTITY      No transformation
  701.     PNG_TRANSFORM_PACKING       Pack 1, 2 and 4-bit samples
  702.     PNG_TRANSFORM_PACKSWAP      Change order of packed
  703.                                 pixels to LSB first
  704.     PNG_TRANSFORM_INVERT_MONO   Invert monochrome images
  705.     PNG_TRANSFORM_SHIFT         Normalize pixels to the
  706.                                 sBIT depth
  707.     PNG_TRANSFORM_BGR           Flip RGB to BGR, RGBA
  708.                                 to BGRA
  709.     PNG_TRANSFORM_SWAP_ALPHA    Flip RGBA to ARGB or GA
  710.                                 to AG
  711.     PNG_TRANSFORM_INVERT_ALPHA  Change alpha from opacity
  712.                                 to transparency
  713.     PNG_TRANSFORM_SWAP_ENDIAN   Byte-swap 16-bit samples
  714.     PNG_TRANSFORM_STRIP_FILLER  Strip out filler bytes.
  715. If you have valid image data in the info structure (you can use
  716. png_set_rows() to put image data in the info structure), simply do this:
  717.     png_write_png(png_ptr, info_ptr, png_transforms, NULL)
  718. where png_transforms is an integer containing the bitwise OR of some set of
  719. transformation flags.  This call is equivalent to png_write_info(),
  720. followed the set of transformations indicated by the transform mask,
  721. then png_write_image(), and finally png_write_end().
  722. (The final parameter of this call is not yet used.  Someday it might point
  723. to transformation parameters required by some future output transform.)
  724. You must use png_transforms and not call any png_set_transform() functions
  725. when you use png_write_png().
  726. .SS The low-level write interface
  727. If you are going the low-level route instead, you are now ready to
  728. write all the file information up to the actual image data.  You do
  729. this with a call to png_write_info().
  730.     png_write_info(png_ptr, info_ptr);
  731. Note that there is one transformation you may need to do before
  732. png_write_info().  In PNG files, the alpha channel in an image is the
  733. level of opacity.  If your data is supplied as a level of
  734. transparency, you can invert the alpha channel before you write it, so
  735. that 0 is fully transparent and 255 (in 8-bit or paletted images) or
  736. 65535 (in 16-bit images) is fully opaque, with
  737.     png_set_invert_alpha(png_ptr);
  738. This must appear before png_write_info() instead of later with the
  739. other transformations because in the case of paletted images the tRNS
  740. chunk data has to be inverted before the tRNS chunk is written.  If
  741. your image is not a paletted image, the tRNS data (which in such cases
  742. represents a single color to be rendered as transparent) won't need to
  743. be changed, and you can safely do this transformation after your
  744. png_write_info() call.
  745. If you need to write a private chunk that you want to appear before
  746. the PLTE chunk when PLTE is present, you can write the PNG info in
  747. two steps, and insert code to write your own chunk between them:
  748.     png_write_info_before_PLTE(png_ptr, info_ptr);
  749.     png_set_unknown_chunks(png_ptr, info_ptr, ...);
  750.     png_write_info(png_ptr, info_ptr);
  751. After you've written the file information, you can set up the library
  752. to handle any special transformations of the image data.  The various
  753. ways to transform the data will be described in the order that they
  754. should occur.  This is important, as some of these change the color
  755. type and/or bit depth of the data, and some others only work on
  756. certain color types and bit depths.  Even though each transformation
  757. checks to see if it has data that it can do something with, you should
  758. make sure to only enable a transformation if it will be valid for the
  759. data.  For example, don't swap red and blue on grayscale data.
  760. PNG files store RGB pixels packed into 3 or 6 bytes.  This code tells
  761. the library to strip input data that has 4 or 8 bytes per pixel down
  762. to 3 or 6 bytes (or strip 2 or 4-byte grayscale+filler data to 1 or 2
  763. bytes per pixel).
  764.     png_set_filler(png_ptr, 0, PNG_FILLER_BEFORE);
  765. where the 0 is unused, and the location is either PNG_FILLER_BEFORE or
  766. PNG_FILLER_AFTER, depending upon whether the filler byte in the pixel
  767. is stored XRGB or RGBX.
  768. PNG files pack pixels of bit depths 1, 2, and 4 into bytes as small as
  769. they can, resulting in, for example, 8 pixels per byte for 1 bit files.
  770. If the data is supplied at 1 pixel per byte, use this code, which will
  771. correctly pack the pixels into a single byte:
  772.     png_set_packing(png_ptr);
  773. PNG files reduce possible bit depths to 1, 2, 4, 8, and 16.  If your
  774. data is of another bit depth, you can write an sBIT chunk into the
  775. file so that decoders can recover the original data if desired.
  776.     /* Set the true bit depth of the image data */
  777.     if (color_type & PNG_COLOR_MASK_COLOR)
  778.     {
  779.         sig_bit.red = true_bit_depth;
  780.         sig_bit.green = true_bit_depth;
  781.         sig_bit.blue = true_bit_depth;
  782.     }
  783.     else
  784.     {
  785.         sig_bit.gray = true_bit_depth;
  786.     }
  787.     if (color_type & PNG_COLOR_MASK_ALPHA)
  788.     {
  789.         sig_bit.alpha = true_bit_depth;
  790.     }
  791.     png_set_sBIT(png_ptr, info_ptr, &sig_bit);
  792. If the data is stored in the row buffer in a bit depth other than
  793. one supported by PNG (e.g. 3 bit data in the range 0-7 for a 4-bit PNG),
  794. this will scale the values to appear to be the correct bit depth as
  795. is required by PNG.
  796.     png_set_shift(png_ptr, &sig_bit);
  797. PNG files store 16 bit pixels in network byte order (big-endian,
  798. ie. most significant bits first).  This code would be used if they are
  799. supplied the other way (little-endian, i.e. least significant bits
  800. first, the way PCs store them):
  801.     if (bit_depth > 8)
  802.        png_set_swap(png_ptr);
  803. If you are using packed-pixel images (1, 2, or 4 bits/pixel), and you
  804. need to change the order the pixels are packed into bytes, you can use:
  805.     if (bit_depth < 8)
  806.        png_set_packswap(png_ptr);
  807. PNG files store 3 color pixels in red, green, blue order.  This code
  808. would be used if they are supplied as blue, green, red:
  809.     png_set_bgr(png_ptr);
  810. PNG files describe monochrome as black being zero and white being
  811. one. This code would be used if the pixels are supplied with this reversed
  812. (black being one and white being zero):
  813.     png_set_invert_mono(png_ptr);
  814. Finally, you can write your own transformation function if none of
  815. the existing ones meets your needs.  This is done by setting a callback
  816. with
  817.     png_set_write_user_transform_fn(png_ptr,
  818.        write_transform_fn);
  819. You must supply the function
  820.     void write_transform_fn(png_ptr ptr, row_info_ptr
  821.        row_info, png_bytep data)
  822. See pngtest.c for a working example.  Your function will be called
  823. before any of the other transformations are processed.
  824. You can also set up a pointer to a user structure for use by your
  825. callback function.
  826.     png_set_user_transform_info(png_ptr, user_ptr, 0, 0);
  827. The user_channels and user_depth parameters of this function are ignored
  828. when writing; you can set them to zero as shown.
  829. You can retrieve the pointer via the function png_get_user_transform_ptr().
  830. For example:
  831.     voidp write_user_transform_ptr =
  832.        png_get_user_transform_ptr(png_ptr);
  833. It is possible to have libpng flush any pending output, either manually,
  834. or automatically after a certain number of lines have been written.  To
  835. flush the output stream a single time call:
  836.     png_write_flush(png_ptr);
  837. and to have libpng flush the output stream periodically after a certain
  838. number of scanlines have been written, call:
  839.     png_set_flush(png_ptr, nrows);
  840. Note that the distance between rows is from the last time png_write_flush()
  841. was called, or the first row of the image if it has never been called.
  842. So if you write 50 lines, and then png_set_flush 25, it will flush the
  843. output on the next scanline, and every 25 lines thereafter, unless
  844. png_write_flush() is called before 25 more lines have been written.
  845. If nrows is too small (less than about 10 lines for a 640 pixel wide
  846. RGB image) the image compression may decrease noticeably (although this
  847. may be acceptable for real-time applications).  Infrequent flushing will
  848. only degrade the compression performance by a few percent over images
  849. that do not use flushing.
  850. .SS Writing the image data
  851. That's it for the transformations.  Now you can write the image data.
  852. The simplest way to do this is in one function call.  If you have the
  853. whole image in memory, you can just call png_write_image() and libpng
  854. will write the image.  You will need to pass in an array of pointers to
  855. each row.  This function automatically handles interlacing, so you don't
  856. need to call png_set_interlace_handling() or call this function multiple
  857. times, or any of that other stuff necessary with png_write_rows().
  858.     png_write_image(png_ptr, row_pointers);
  859. where row_pointers is:
  860.     png_byte *row_pointers[height];
  861. You can point to void or char or whatever you use for pixels.
  862. If you don't want to write the whole image at once, you can
  863. use png_write_rows() instead.  If the file is not interlaced,
  864. this is simple:
  865.     png_write_rows(png_ptr, row_pointers,
  866.        number_of_rows);
  867. row_pointers is the same as in the png_write_image() call.
  868. If you are just writing one row at a time, you can do this with
  869. a single row_pointer instead of an array of row_pointers:
  870.     png_bytep row_pointer = row;
  871.     png_write_row(png_ptr, row_pointer);
  872. When the file is interlaced, things can get a good deal more
  873. complicated.  The only currently (as of the PNG Specification
  874. version 1.2, dated July 1999) defined interlacing scheme for PNG files
  875. is the "Adam7" interlace scheme, that breaks down an
  876. image into seven smaller images of varying size.  libpng will build
  877. these images for you, or you can do them yourself.  If you want to
  878. build them yourself, see the PNG specification for details of which
  879. pixels to write when.
  880. If you don't want libpng to handle the interlacing details, just
  881. use png_set_interlace_handling() and call png_write_rows() the
  882. correct number of times to write all seven sub-images.
  883. If you want libpng to build the sub-images, call this before you start
  884. writing any rows:
  885.     number_of_passes =
  886.        png_set_interlace_handling(png_ptr);
  887. This will return the number of passes needed.  Currently, this
  888. is seven, but may change if another interlace type is added.
  889. Then write the complete image number_of_passes times.
  890.     png_write_rows(png_ptr, row_pointers,
  891.        number_of_rows);
  892. As some of these rows are not used, and thus return immediately,
  893. you may want to read about interlacing in the PNG specification,
  894. and only update the rows that are actually used.
  895. .SS Finishing a sequential write
  896. After you are finished writing the image, you should finish writing
  897. the file.  If you are interested in writing comments or time, you should
  898. pass an appropriately filled png_info pointer.  If you are not interested,
  899. you can pass NULL.
  900.     png_write_end(png_ptr, info_ptr);
  901. When you are done, you can free all memory used by libpng like this:
  902.     png_destroy_write_struct(&png_ptr, &info_ptr);
  903. It is also possible to individually free the info_ptr members that
  904. point to libpng-allocated storage with the following function:
  905.     png_free_data(png_ptr, info_ptr, mask, seq)
  906.     mask  - identifies data to be freed, a mask
  907.             containing the bitwise OR of one or
  908.             more of
  909.               PNG_FREE_PLTE, PNG_FREE_TRNS,
  910.               PNG_FREE_HIST, PNG_FREE_ICCP,
  911.               PNG_FREE_PCAL, PNG_FREE_ROWS,
  912.               PNG_FREE_SCAL, PNG_FREE_SPLT,
  913.               PNG_FREE_TEXT, PNG_FREE_UNKN,
  914.             or simply PNG_FREE_ALL
  915.     seq   - sequence number of item to be freed
  916.             (-1 for all items)
  917. This function may be safely called when the relevant storage has
  918. already been freed, or has not yet been allocated, or was allocated
  919. by the user  and not by libpng,  and will in those
  920. cases do nothing.  The "seq" parameter is ignored if only one item
  921. of the selected data type, such as PLTE, is allowed.  If "seq" is not
  922. -1, and multiple items are allowed for the data type identified in
  923. the mask, such as text or sPLT, only the n'th item in the structure
  924. is freed, where n is "seq".
  925. If you allocated data such as a palette that you passed
  926. in to libpng with png_set_*, you must not free it until just before the call to
  927. png_destroy_write_struct().
  928. The default behavior is only to free data that was allocated internally
  929. by libpng.  This can be changed, so that libpng will not free the data,
  930. or so that it will free data that was allocated by the user with png_malloc()
  931. or png_zalloc() and passed in via a png_set_*() function, with
  932.     png_data_freer(png_ptr, info_ptr, freer, mask)
  933.     mask   - which data elements are affected
  934.              same choices as in png_free_data()
  935.     freer  - one of
  936.                PNG_DESTROY_WILL_FREE_DATA
  937.                PNG_SET_WILL_FREE_DATA
  938.                PNG_USER_WILL_FREE_DATA
  939. For example, to transfer responsibility for some data from a read structure
  940. to a write structure, you could use
  941.     png_data_freer(read_ptr, read_info_ptr,
  942.        PNG_USER_WILL_FREE_DATA,
  943.        PNG_FREE_PLTE|PNG_FREE_tRNS|PNG_FREE_hIST)
  944.     png_data_freer(write_ptr, write_info_ptr,
  945.        PNG_DESTROY_WILL_FREE_DATA,
  946.        PNG_FREE_PLTE|PNG_FREE_tRNS|PNG_FREE_hIST)
  947. thereby briefly reassigning responsibility for freeing to the user but
  948. immediately afterwards reassigning it once more to the write_destroy
  949. function.  Having done this, it would then be safe to destroy the read
  950. structure and continue to use the PLTE, tRNS, and hIST data in the write
  951. structure.
  952. This function only affects data that has already been allocated.
  953. You can call this function before calling after the png_set_*() functions
  954. to control whether the user or png_destroy_*() is supposed to free the data.
  955. When the user assumes responsibility for libpng-allocated data, the
  956. application must use
  957. png_free() to free it, and when the user transfers responsibility to libpng
  958. for data that the user has allocated, the user must have used png_malloc()
  959. or png_zalloc() to allocate it.
  960. If you allocated text_ptr.text, text_ptr.lang, and text_ptr.translated_keyword
  961. separately, do not transfer responsibility for freeing text_ptr to libpng,
  962. because when libpng fills a png_text structure it combines these members with
  963. the key member, and png_free_data() will free only text_ptr.key.  Similarly,
  964. if you transfer responsibility for free'ing text_ptr from libpng to your
  965. application, your application must not separately free those members.
  966. For a more compact example of writing a PNG image, see the file example.c.
  967. .SH V. Modifying/Customizing libpng:
  968. There are two issues here.  The first is changing how libpng does
  969. standard things like memory allocation, input/output, and error handling.
  970. The second deals with more complicated things like adding new chunks,
  971. adding new transformations, and generally changing how libpng works.
  972. Both of those are compile-time issues; that is, they are generally
  973. determined at the time the code is written, and there is rarely a need
  974. to provide the user with a means of changing them.
  975. Memory allocation, input/output, and error handling
  976. All of the memory allocation, input/output, and error handling in libpng
  977. goes through callbacks that are user-settable.  The default routines are
  978. in pngmem.c, pngrio.c, pngwio.c, and pngerror.c, respectively.  To change
  979. these functions, call the appropriate png_set_*_fn() function.
  980. Memory allocation is done through the functions png_malloc()
  981. and png_free().  These currently just call the standard C functions.  If
  982. your pointers can't access more then 64K at a time, you will want to set
  983. MAXSEG_64K in zlib.h.  Since it is unlikely that the method of handling
  984. memory allocation on a platform will change between applications, these
  985. functions must be modified in the library at compile time.  If you prefer
  986. to use a different method of allocating and freeing data, you can use
  987. png_create_read_struct_2() or png_create_write_struct_2() to register
  988. your own functions as described above.
  989. These functions also provide a void pointer that can be retrieved via
  990.     mem_ptr=png_get_mem_ptr(png_ptr);
  991. Your replacement memory functions must have prototypes as follows:
  992.     png_voidp malloc_fn(png_structp png_ptr,
  993.        png_size_t size);
  994.     void free_fn(png_structp png_ptr, png_voidp ptr);
  995. Your malloc_fn() must return NULL in case of failure.  The png_malloc()
  996. function will normally call png_error() if it receives a NULL from the
  997. system memory allocator or from your replacement malloc_fn().
  998. Your free_fn() will never be called with a NULL ptr, since libpng's
  999. png_free() checks for NULL before calling free_fn().
  1000. Input/Output in libpng is done through png_read() and png_write(),
  1001. which currently just call fread() and fwrite().  The FILE * is stored in
  1002. png_struct and is initialized via png_init_io().  If you wish to change
  1003. the method of I/O, the library supplies callbacks that you can set
  1004. through the function png_set_read_fn() and png_set_write_fn() at run
  1005. time, instead of calling the png_init_io() function.  These functions
  1006. also provide a void pointer that can be retrieved via the function
  1007. png_get_io_ptr().  For example:
  1008.     png_set_read_fn(png_structp read_ptr,
  1009.         voidp read_io_ptr, png_rw_ptr read_data_fn)
  1010.     png_set_write_fn(png_structp write_ptr,
  1011.         voidp write_io_ptr, png_rw_ptr write_data_fn,
  1012.         png_flush_ptr output_flush_fn);
  1013.     voidp read_io_ptr = png_get_io_ptr(read_ptr);
  1014.     voidp write_io_ptr = png_get_io_ptr(write_ptr);
  1015. The replacement I/O functions must have prototypes as follows:
  1016.     void user_read_data(png_structp png_ptr,
  1017.         png_bytep data, png_size_t length);
  1018.     void user_write_data(png_structp png_ptr,
  1019.         png_bytep data, png_size_t length);
  1020.     void user_flush_data(png_structp png_ptr);
  1021. Supplying NULL for the read, write, or flush functions sets them back
  1022. to using the default C stream functions.  It is an error to read from
  1023. a write stream, and vice versa.
  1024. Error handling in libpng is done through png_error() and png_warning().
  1025. Errors handled through png_error() are fatal, meaning that png_error()
  1026. should never return to its caller.  Currently, this is handled via
  1027. setjmp() and longjmp() (unless you have compiled libpng with
  1028. PNG_SETJMP_NOT_SUPPORTED, in which case it is handled via PNG_ABORT()),
  1029. but you could change this to do things like exit() if you should wish.
  1030. On non-fatal errors, png_warning() is called
  1031. to print a warning message, and then control returns to the calling code.
  1032. By default png_error() and png_warning() print a message on stderr via
  1033. fprintf() unless the library is compiled with PNG_NO_CONSOLE_IO defined
  1034. (because you don't want the messages) or PNG_NO_STDIO defined (because
  1035. fprintf() isn't available).  If you wish to change the behavior of the error
  1036. functions, you will need to set up your own message callbacks.  These
  1037. functions are normally supplied at the time that the png_struct is created.
  1038. It is also possible to redirect errors and warnings to your own replacement
  1039. functions after png_create_*_struct() has been called by calling:
  1040.     png_set_error_fn(png_structp png_ptr,
  1041.         png_voidp error_ptr, png_error_ptr error_fn,
  1042.         png_error_ptr warning_fn);
  1043.     png_voidp error_ptr = png_get_error_ptr(png_ptr);
  1044. If NULL is supplied for either error_fn or warning_fn, then the libpng
  1045. default function will be used, calling fprintf() and/or longjmp() if a
  1046. problem is encountered.  The replacement error functions should have
  1047. parameters as follows:
  1048.     void user_error_fn(png_structp png_ptr,
  1049.         png_const_charp error_msg);
  1050.     void user_warning_fn(png_structp png_ptr,
  1051.         png_const_charp warning_msg);
  1052. The motivation behind using setjmp() and longjmp() is the C++ throw and
  1053. catch exception handling methods.  This makes the code much easier to write,
  1054. as there is no need to check every return code of every function call.
  1055. However, there are some uncertainties about the status of local variables
  1056. after a longjmp, so the user may want to be careful about doing anything after
  1057. setjmp returns non-zero besides returning itself.  Consult your compiler
  1058. documentation for more details.  For an alternative approach, you may wish
  1059. to use the "cexcept" facility (see http://cexcept.sourceforge.net).
  1060. .SS Custom chunks
  1061. If you need to read or write custom chunks, you may need to get deeper
  1062. into the libpng code.  The library now has mechanisms for storing
  1063. and writing chunks of unknown type; you can even declare callbacks
  1064. for custom chunks.  However, this may not be good enough if the
  1065. library code itself needs to know about interactions between your
  1066. chunk and existing `intrinsic' chunks.
  1067. If you need to write a new intrinsic chunk, first read the PNG
  1068. specification. Acquire a first level of
  1069. understanding of how it works.  Pay particular attention to the
  1070. sections that describe chunk names, and look at how other chunks were
  1071. designed, so you can do things similarly.  Second, check out the
  1072. sections of libpng that read and write chunks.  Try to find a chunk
  1073. that is similar to yours and use it as a template.  More details can
  1074. be found in the comments inside the code.  It is best to handle unknown
  1075. chunks in a generic method, via callback functions, instead of by
  1076. modifying libpng functions.
  1077. If you wish to write your own transformation for the data, look through
  1078. the part of the code that does the transformations, and check out some of
  1079. the simpler ones to get an idea of how they work.  Try to find a similar
  1080. transformation to the one you want to add and copy off of it.  More details
  1081. can be found in the comments inside the code itself.
  1082. .SS Configuring for 16 bit platforms
  1083. You will want to look into zconf.h to tell zlib (and thus libpng) that
  1084. it cannot allocate more then 64K at a time.  Even if you can, the memory
  1085. won't be accessible.  So limit zlib and libpng to 64K by defining MAXSEG_64K.
  1086. .SS Configuring for DOS
  1087. For DOS users who only have access to the lower 640K, you will
  1088. have to limit zlib's memory usage via a png_set_compression_mem_level()
  1089. call.  See zlib.h or zconf.h in the zlib library for more information.
  1090. .SS Configuring for Medium Model
  1091. Libpng's support for medium model has been tested on most of the popular
  1092. compilers.  Make sure MAXSEG_64K gets defined, USE_FAR_KEYWORD gets
  1093. defined, and FAR gets defined to far in pngconf.h, and you should be
  1094. all set.  Everything in the library (except for zlib's structure) is
  1095. expecting far data.  You must use the typedefs with the p or pp on
  1096. the end for pointers (or at least look at them and be careful).  Make
  1097. note that the rows of data are defined as png_bytepp, which is an
  1098. unsigned char far * far *.
  1099. .SS Configuring for gui/windowing platforms:
  1100. You will need to write new error and warning functions that use the GUI
  1101. interface, as described previously, and set them to be the error and
  1102. warning functions at the time that png_create_*_struct() is called,
  1103. in order to have them available during the structure initialization.
  1104. They can be changed later via png_set_error_fn().  On some compilers,
  1105. you may also have to change the memory allocators (png_malloc, etc.).
  1106. .SS Configuring for compiler xxx:
  1107. All includes for libpng are in pngconf.h.  If you need to add/change/delete
  1108. an include, this is the place to do it.  The includes that are not
  1109. needed outside libpng are protected by the PNG_INTERNAL definition,
  1110. which is only defined for those routines inside libpng itself.  The
  1111. files in libpng proper only include png.h, which includes pngconf.h.
  1112. .SS Configuring zlib:
  1113. There are special functions to configure the compression.  Perhaps the
  1114. most useful one changes the compression level, which currently uses
  1115. input compression values in the range 0 - 9.  The library normally
  1116. uses the default compression level (Z_DEFAULT_COMPRESSION = 6).  Tests
  1117. have shown that for a large majority of images, compression values in
  1118. the range 3-6 compress nearly as well as higher levels, and do so much
  1119. faster.  For online applications it may be desirable to have maximum speed
  1120. (Z_BEST_SPEED = 1).  With versions of zlib after v0.99, you can also
  1121. specify no compression (Z_NO_COMPRESSION = 0), but this would create
  1122. files larger than just storing the raw bitmap.  You can specify the
  1123. compression level by calling:
  1124.     png_set_compression_level(png_ptr, level);
  1125. Another useful one is to reduce the memory level used by the library.
  1126. The memory level defaults to 8, but it can be lowered if you are
  1127. short on memory (running DOS, for example, where you only have 640K).
  1128. Note that the memory level does have an effect on compression; among
  1129. other things, lower levels will result in sections of incompressible
  1130. data being emitted in smaller stored blocks, with a correspondingly
  1131. larger relative overhead of up to 15% in the worst case.
  1132.     png_set_compression_mem_level(png_ptr, level);
  1133. The other functions are for configuring zlib.  They are not recommended
  1134. for normal use and may result in writing an invalid PNG file.  See
  1135. zlib.h for more information on what these mean.
  1136.     png_set_compression_strategy(png_ptr,
  1137.         strategy);
  1138.     png_set_compression_window_bits(png_ptr,
  1139.         window_bits);
  1140.     png_set_compression_method(png_ptr, method);
  1141.     png_set_compression_buffer_size(png_ptr, size);
  1142. .SS Controlling row filtering
  1143. If you want to control whether libpng uses filtering or not, which
  1144. filters are used, and how it goes about picking row filters, you
  1145. can call one of these functions.  The selection and configuration
  1146. of row filters can have a significant impact on the size and
  1147. encoding speed and a somewhat lesser impact on the decoding speed
  1148. of an image.  Filtering is enabled by default for RGB and grayscale
  1149. images (with and without alpha), but not for paletted images nor
  1150. for any images with bit depths less than 8 bits/pixel.
  1151. The 'method' parameter sets the main filtering method, which is
  1152. currently only '0' in the PNG 1.2 specification.  The 'filters'
  1153. parameter sets which filter(s), if any, should be used for each
  1154. scanline.  Possible values are PNG_ALL_FILTERS and PNG_NO_FILTERS
  1155. to turn filtering on and off, respectively.
  1156. Individual filter types are PNG_FILTER_NONE, PNG_FILTER_SUB,
  1157. PNG_FILTER_UP, PNG_FILTER_AVG, PNG_FILTER_PAETH, which can be bitwise
  1158. ORed together with '|' to specify one or more filters to use.
  1159. These filters are described in more detail in the PNG specification.
  1160. If you intend to change the filter type during the course of writing
  1161. the image, you should start with flags set for all of the filters
  1162. you intend to use so that libpng can initialize its internal
  1163. structures appropriately for all of the filter types.  (Note that this
  1164. means the first row must always be adaptively filtered, because libpng
  1165. currently does not allocate the filter buffers until png_write_row()
  1166. is called for the first time.)
  1167.     filters = PNG_FILTER_NONE | PNG_FILTER_SUB
  1168.               PNG_FILTER_UP | PNG_FILTER_AVE |
  1169.               PNG_FILTER_PAETH | PNG_ALL_FILTERS;
  1170.     png_set_filter(png_ptr, PNG_FILTER_TYPE_BASE,
  1171.        filters);
  1172.               The second parameter can also be
  1173.               PNG_INTRAPIXEL_DIFFERENCING if you are
  1174.               writing a PNG to be embedded in a MNG
  1175.               datastream.  This parameter must be the
  1176.               same as the value of filter_method used
  1177.               in png_set_IHDR().
  1178. It is also possible to influence how libpng chooses from among the
  1179. available filters.  This is done in one or both of two ways - by
  1180. telling it how important it is to keep the same filter for successive
  1181. rows, and by telling it the relative computational costs of the filters.
  1182.     double weights[3] = {1.5, 1.3, 1.1},
  1183.        costs[PNG_FILTER_VALUE_LAST] =
  1184.        {1.0, 1.3, 1.3, 1.5, 1.7};
  1185.     png_set_filter_heuristics(png_ptr,
  1186.        PNG_FILTER_HEURISTIC_WEIGHTED, 3,
  1187.        weights, costs);
  1188. The weights are multiplying factors that indicate to libpng that the
  1189. row filter should be the same for successive rows unless another row filter
  1190. is that many times better than the previous filter.  In the above example,
  1191. if the previous 3 filters were SUB, SUB, NONE, the SUB filter could have a
  1192. "sum of absolute differences" 1.5 x 1.3 times higher than other filters
  1193. and still be chosen, while the NONE filter could have a sum 1.1 times
  1194. higher than other filters and still be chosen.  Unspecified weights are
  1195. taken to be 1.0, and the specified weights should probably be declining
  1196. like those above in order to emphasize recent filters over older filters.
  1197. The filter costs specify for each filter type a relative decoding cost
  1198. to be considered when selecting row filters.  This means that filters
  1199. with higher costs are less likely to be chosen over filters with lower
  1200. costs, unless their "sum of absolute differences" is that much smaller.
  1201. The costs do not necessarily reflect the exact computational speeds of
  1202. the various filters, since this would unduly influence the final image
  1203. size.
  1204. Note that the numbers above were invented purely for this example and
  1205. are given only to help explain the function usage.  Little testing has
  1206. been done to find optimum values for either the costs or the weights.
  1207. .SS Removing unwanted object code
  1208. There are a bunch of #define's in pngconf.h that control what parts of
  1209. libpng are compiled.  All the defines end in _SUPPORTED.  If you are
  1210. never going to use a capability, you can change the #define to #undef
  1211. before recompiling libpng and save yourself code and data space, or
  1212. you can turn off individual capabilities with defines that begin with
  1213. PNG_NO_.
  1214. You can also turn all of the transforms and ancillary chunk capabilities
  1215. off en masse with compiler directives that define
  1216. PNG_NO_READ[or WRITE]_TRANSFORMS, or PNG_NO_READ[or WRITE]_ANCILLARY_CHUNKS,
  1217. or all four,
  1218. along with directives to turn on any of the capabilities that you do
  1219. want.  The PNG_NO_READ[or WRITE]_TRANSFORMS directives disable
  1220. the extra transformations but still leave the library fully capable of reading
  1221. and writing PNG files with all known public chunks
  1222. Use of the PNG_NO_READ[or WRITE]_ANCILLARY_CHUNKS directive
  1223. produces a library that is incapable of reading or writing ancillary chunks.
  1224. If you are not using the progressive reading capability, you can
  1225. turn that off with PNG_NO_PROGRESSIVE_READ (don't confuse
  1226. this with the INTERLACING capability, which you'll still have).
  1227. All the reading and writing specific code are in separate files, so the
  1228. linker should only grab the files it needs.  However, if you want to
  1229. make sure, or if you are building a stand alone library, all the
  1230. reading files start with pngr and all the writing files start with
  1231. pngw.  The files that don't match either (like png.c, pngtrans.c, etc.)
  1232. are used for both reading and writing, and always need to be included.
  1233. The progressive reader is in pngpread.c
  1234. If you are creating or distributing a dynamically linked library (a .so
  1235. or DLL file), you should not remove or disable any parts of the library,
  1236. as this will cause applications linked with different versions of the
  1237. library to fail if they call functions not available in your library.
  1238. The size of the library itself should not be an issue, because only
  1239. those sections that are actually used will be loaded into memory.
  1240. .SS Requesting debug printout
  1241. The macro definition PNG_DEBUG can be used to request debugging
  1242. printout.  Set it to an integer value in the range 0 to 3.  Higher
  1243. numbers result in increasing amounts of debugging information.  The
  1244. information is printed to the "stderr" file, unless another file
  1245. name is specified in the PNG_DEBUG_FILE macro definition.
  1246. When PNG_DEBUG > 0, the following functions (macros) become available:
  1247.    png_debug(level, message)
  1248.    png_debug1(level, message, p1)
  1249.    png_debug2(level, message, p1, p2)
  1250. in which "level" is compared to PNG_DEBUG to decide whether to print
  1251. the message, "message" is the formatted string to be printed,
  1252. and p1 and p2 are parameters that are to be embedded in the string
  1253. according to printf-style formatting directives.  For example,
  1254.    png_debug1(2, "foo=%dn", foo);
  1255. is expanded to
  1256.    if(PNG_DEBUG > 2)
  1257.      fprintf(PNG_DEBUG_FILE, "foo=%dn", foo);
  1258. When PNG_DEBUG is defined but is zero, the macros aren't defined, but you
  1259. can still use PNG_DEBUG to control your own debugging:
  1260.    #ifdef PNG_DEBUG
  1261.        fprintf(stderr, ...
  1262.    #endif
  1263. When PNG_DEBUG = 1, the macros are defined, but only png_debug statements
  1264. having level = 0 will be printed.  There aren't any such statements in
  1265. this version of libpng, but if you insert some they will be printed.
  1266. .SH VII.  MNG support
  1267. The MNG specification (available at http://www.libpng.org/pub/mng) allows
  1268. certain extensions to PNG for PNG images that are embedded in MNG datastreams.
  1269. Libpng can support some of these extensions.  To enable them, use the
  1270. png_permit_mng_features() function:
  1271.    feature_set = png_permit_mng_features(png_ptr, mask)
  1272.    mask is a png_uint_32 containing the bitwise OR of the
  1273.         features you want to enable.  These include
  1274.         PNG_FLAG_MNG_EMPTY_PLTE
  1275.         PNG_FLAG_MNG_FILTER_64
  1276.         PNG_ALL_MNG_FEATURES
  1277.    feature_set is a png_uint_32 that is the bitwise AND of
  1278.       your mask with the set of MNG features that is
  1279.       supported by the version of libpng that you are using.
  1280. It is an error to use this function when reading or writing a standalone
  1281. PNG file with the PNG 8-byte signature.  The PNG datastream must be wrapped
  1282. in a MNG datastream.  As a minimum, it must have the MNG 8-byte signature
  1283. and the MHDR and MEND chunks.  Libpng does not provide support for these
  1284. or any other MNG chunks; your application must provide its own support for
  1285. them.  You may wish to consider using libmng (available at
  1286. http://www.libmng.com) instead.
  1287. .SH VIII.  Changes to Libpng from version 0.88
  1288. It should be noted that versions of libpng later than 0.96 are not
  1289. distributed by the original libpng author, Guy Schalnat, nor by
  1290. Andreas Dilger, who had taken over from Guy during 1996 and 1997, and
  1291. distributed versions 0.89 through 0.96, but rather by another member
  1292. of the original PNG Group, Glenn Randers-Pehrson.  Guy and Andreas are
  1293. still alive and well, but they have moved on to other things.
  1294. The old libpng functions png_read_init(), png_write_init(),
  1295. png_info_init(), png_read_destroy(), and png_write_destroy() have been
  1296. moved to PNG_INTERNAL in version 0.95 to discourage their use.  These
  1297. functions will be removed from libpng version 2.0.0.
  1298. The preferred method of creating and initializing the libpng structures is
  1299. via the png_create_read_struct(), png_create_write_struct(), and
  1300. png_create_info_struct() because they isolate the size of the structures
  1301. from the application, allow version error checking, and also allow the
  1302. use of custom error handling routines during the initialization, which
  1303. the old functions do not.  The functions png_read_destroy() and
  1304. png_write_destroy() do not actually free the memory that libpng
  1305. allocated for these structs, but just reset the data structures, so they
  1306. can be used instead of png_destroy_read_struct() and
  1307. png_destroy_write_struct() if you feel there is too much system overhead
  1308. allocating and freeing the png_struct for each image read.
  1309. Setting the error callbacks via png_set_message_fn() before
  1310. png_read_init() as was suggested in libpng-0.88 is no longer supported
  1311. because this caused applications that do not use custom error functions
  1312. to fail if the png_ptr was not initialized to zero.  It is still possible
  1313. to set the error callbacks AFTER png_read_init(), or to change them with
  1314. png_set_error_fn(), which is essentially the same function, but with a new
  1315. name to force compilation errors with applications that try to use the old
  1316. method.
  1317. Starting with version 1.0.7, you can find out which version of the library
  1318. you are using at run-time:
  1319.    png_uint_32 libpng_vn = png_access_version_number();
  1320. The number libpng_vn is constructed from the major version, minor
  1321. version with leading zero, and release number with leading zero,
  1322. (e.g., libpng_vn for version 1.0.7 is 10007).
  1323. You can also check which version of png.h you used when compiling your
  1324. application:
  1325.    png_uint_32 application_vn = PNG_LIBPNG_VER;
  1326. .SH IX. Y2K Compliance in libpng
  1327. December 18, 2008
  1328. Since the PNG Development group is an ad-hoc body, we can't make
  1329. an official declaration.
  1330. This is your unofficial assurance that libpng from version 0.71 and
  1331. upward through 1.2.34 are Y2K compliant.  It is my belief that earlier
  1332. versions were also Y2K compliant.
  1333. Libpng only has three year fields.  One is a 2-byte unsigned integer that
  1334. will hold years up to 65535.  The other two hold the date in text
  1335. format, and will hold years up to 9999.
  1336. The integer is
  1337.     "png_uint_16 year" in png_time_struct.
  1338. The strings are
  1339.     "png_charp time_buffer" in png_struct and
  1340.     "near_time_buffer", which is a local character string in png.c.
  1341. There are seven time-related functions:
  1342.     png_convert_to_rfc_1123() in png.c
  1343.       (formerly png_convert_to_rfc_1152() in error)
  1344.     png_convert_from_struct_tm() in pngwrite.c, called
  1345.       in pngwrite.c
  1346.     png_convert_from_time_t() in pngwrite.c
  1347.     png_get_tIME() in pngget.c
  1348.     png_handle_tIME() in pngrutil.c, called in pngread.c
  1349.     png_set_tIME() in pngset.c
  1350.     png_write_tIME() in pngwutil.c, called in pngwrite.c
  1351. All appear to handle dates properly in a Y2K environment.  The
  1352. png_convert_from_time_t() function calls gmtime() to convert from system
  1353. clock time, which returns (year - 1900), which we properly convert to
  1354. the full 4-digit year.  There is a possibility that applications using
  1355. libpng are not passing 4-digit years into the png_convert_to_rfc_1123()
  1356. function, or that they are incorrectly passing only a 2-digit year
  1357. instead of "year - 1900" into the png_convert_from_struct_tm() function,
  1358. but this is not under our control.  The libpng documentation has always
  1359. stated that it works with 4-digit years, and the APIs have been
  1360. documented as such.
  1361. The tIME chunk itself is also Y2K compliant.  It uses a 2-byte unsigned
  1362. integer to hold the year, and can hold years as large as 65535.
  1363. zlib, upon which libpng depends, is also Y2K compliant.  It contains
  1364. no date-related code.
  1365.    Glenn Randers-Pehrson
  1366.    libpng maintainer
  1367.    PNG Development Group
  1368. .SH NOTE
  1369. Note about libpng version numbers:
  1370. Due to various miscommunications, unforeseen code incompatibilities
  1371. and occasional factors outside the authors' control, version numbering
  1372. on the library has not always been consistent and straightforward.
  1373. The following table summarizes matters since version 0.89c, which was
  1374. the first widely used release:
  1375.  source             png.h  png.h  shared-lib
  1376.  version            string   int  version
  1377.  -------            ------  ----- ----------
  1378.  0.89c ("beta 3")  0.89       89  1.0.89
  1379.  0.90  ("beta 4")  0.90       90  0.90
  1380.  0.95  ("beta 5")  0.95       95  0.95
  1381.  0.96  ("beta 6")  0.96       96  0.96
  1382.  0.97b ("beta 7")  1.00.97    97  1.0.1
  1383.  0.97c             0.97       97  2.0.97
  1384.  0.98              0.98       98  2.0.98
  1385.  0.99              0.99       98  2.0.99
  1386.  0.99a-m           0.99       99  2.0.99
  1387.  1.00              1.00      100  2.1.0
  1388.  1.0.0             1.0.0     100  2.1.0
  1389.  1.0.0   (from here on, the  100  2.1.0
  1390.  1.0.1    png.h string is  10001  2.1.0
  1391.  1.0.1a-e identical to the 10002  from here on, the
  1392.  1.0.2    source version)  10002  shared library is 2.V
  1393.  1.0.2a-b                  10003  where V is the source
  1394.  1.0.1                     10001  code version except as
  1395.  1.0.1a-e                  10002  2.1.0.1a-e   noted.
  1396.  1.0.2                     10002  2.1.0.2
  1397.  1.0.2a-b                  10003  2.1.0.2a-b
  1398.  1.0.3                     10003  2.1.0.3
  1399.  1.0.3a-d                  10004  2.1.0.3a-d
  1400.  1.0.4                     10004  2.1.0.4
  1401.  1.0.4a-f                  10005  2.1.0.4a-f
  1402.  1.0.5 (+ 2 patches)       10005  2.1.0.5
  1403.  1.0.5a-d                  10006  2.1.0.5a-d
  1404.  1.0.5e-r                  10100  2.1.0.5e-r
  1405.  1.0.5s-v                  10006  2.1.0.5s-v
  1406.  1.0.6 (+ 3 patches)       10006  2.1.0.6
  1407.  1.0.6d-g                  10007  2.1.0.6d-g
  1408.  1.0.6h                    10007  10.6h
  1409.  1.0.6i                    10007  10.6i
  1410.  1.0.6j                    10007  2.1.0.6j
  1411.  1.0.7beta11-14    DLLNUM  10007  2.1.0.7beta11-14
  1412.  1.0.7beta15-18       1    10007  2.1.0.7beta15-18
  1413.  1.0.7rc1-2           1    10007  2.1.0.7rc1-2
  1414.  1.0.7                1    10007  2.1.0.7
  1415.  1.0.8beta1-4         1    10008  2.1.0.8beta1-4
  1416.  1.0.8rc1             1    10008  2.1.0.8rc1
  1417.  1.0.8                1    10008  2.1.0.8
  1418.  1.0.9beta1-6         1    10009  2.1.0.9beta1-6
  1419.  1.0.9rc1             1    10009  2.1.0.9rc1
  1420.  1.0.9beta7-10        1    10009  2.1.0.9beta7-10
  1421.  1.0.9rc2             1    10009  2.1.0.9rc2
  1422.  1.0.9                1    10009  2.1.0.9
  1423.  1.0.10beta1          1    10010  2.1.0.10beta1
  1424.  1.0.10rc1            1    10010  2.1.0.10rc1
  1425.  1.0.10               1    10010  2.1.0.10
  1426.  1.0.11beta1-3        1    10011  2.1.0.11beta1-3
  1427.  1.0.11rc1            1    10011  2.1.0.11rc1
  1428.  1.0.11               1    10011  2.1.0.11
  1429.  1.0.12beta1-2        2    10012  2.1.0.12beta1-2
  1430.  1.0.12rc1            2    10012  2.1.0.12rc1
  1431.  1.0.12               2    10012  2.1.0.12
  1432.  1.1.0a-f             -    10100  2.1.1.0a-f abandoned
  1433.  1.2.0beta1-2         2    10200  2.1.2.0beta1-2
  1434.  1.2.0beta3-5         3    10200  3.1.2.0beta3-5
  1435.  1.2.0rc1             3    10200  3.1.2.0rc1
  1436.  1.2.0                3    10200  3.1.2.0
  1437.  1.2.1beta-4          3    10201  3.1.2.1beta1-4
  1438.  1.2.1rc1-2           3    10201  3.1.2.1rc1-2
  1439.  1.2.1                3    10201  3.1.2.1
  1440.  1.2.2beta1-6        12    10202  12.so.0.1.2.2beta1-6
  1441.  1.0.13beta1         10    10013  10.so.0.1.0.13beta1
  1442.  1.0.13rc1           10    10013  10.so.0.1.0.13rc1
  1443.  1.2.2rc1            12    10202  12.so.0.1.2.2rc1
  1444.  1.0.13              10    10013  10.so.0.1.0.13
  1445.  1.2.2               12    10202  12.so.0.1.2.2
  1446.  1.2.3rc1-6          12    10203  12.so.0.1.2.3rc1-6
  1447.  1.2.3               12    10203  12.so.0.1.2.3
  1448.  1.2.4beta1-3        13    10204  12.so.0.1.2.4beta1-3
  1449.  1.2.4rc1            13    10204  12.so.0.1.2.4rc1
  1450.  1.0.14              10    10014  10.so.0.1.0.14
  1451.  1.2.4               13    10204  12.so.0.1.2.4
  1452.  1.2.5beta1-2        13    10205  12.so.0.1.2.5beta1-2
  1453.  1.0.15rc1           10    10015  10.so.0.1.0.15rc1
  1454.  1.0.15              10    10015  10.so.0.1.0.15
  1455.  1.2.5               13    10205  12.so.0.1.2.5
  1456.  1.2.6beta1-4        13    10206  12.so.0.1.2.6beta1-4
  1457.  1.2.6rc1-5          13    10206  12.so.0.1.2.6rc1-5
  1458.  1.0.16              10    10016  10.so.0.1.0.16
  1459.  1.2.6               13    10206  12.so.0.1.2.6
  1460.  1.2.7beta1-2        13    10207  12.so.0.1.2.7beta1-2
  1461.  1.0.17rc1           10    10017  10.so.0.1.0.17rc1
  1462.  1.2.7rc1            13    10207  12.so.0.1.2.7rc1
  1463.  1.0.17              10    10017  10.so.0.1.0.17
  1464.  1.2.7               13    10207  12.so.0.1.2.7
  1465.  1.2.8beta1-5        13    10208  12.so.0.1.2.8beta1-5
  1466.  1.0.18rc1-5         10    10018  10.so.0.1.0.18rc1-5
  1467.  1.2.8rc1-5          13    10208  12.so.0.1.2.8rc1-5
  1468.  1.0.18              10    10018  10.so.0.1.0.18
  1469.  1.2.8               13    10208  12.so.0.1.2.8
  1470.  1.2.9beta1-3        13    10209  12.so.0.1.2.9beta1-3
  1471.  1.2.9beta4-11       13    10209  12.so.0.9[.0]
  1472.  1.2.9rc1            13    10209  12.so.0.9[.0]
  1473.  1.2.9               13    10209  12.so.0.9[.0]
  1474.  1.2.10beta1-8       13    10210  12.so.0.10[.0]
  1475.  1.2.10rc1-3         13    10210  12.so.0.10[.0]
  1476.  1.2.10              13    10210  12.so.0.10[.0]
  1477.  1.2.11beta1-4       13    10211  12.so.0.11[.0]
  1478.  1.0.19rc1-5         10    10019  10.so.0.19[.0]
  1479.  1.2.11rc1-5         13    10211  12.so.0.11[.0]
  1480.  1.0.19              10    10019  10.so.0.19[.0]
  1481.  1.2.11              13    10211  12.so.0.11[.0]
  1482.  1.0.20              10    10020  10.so.0.20[.0]
  1483.  1.2.12              13    10212  12.so.0.12[.0]
  1484.  1.2.13beta1         13    10213  12.so.0.13[.0]
  1485.  1.0.21              10    10021  10.so.0.21[.0]
  1486.  1.2.13              13    10213  12.so.0.13[.0]
  1487.  1.2.14beta1-2       13    10214  12.so.0.14[.0]
  1488.  1.0.22rc1           10    10022  10.so.0.22[.0]
  1489.  1.2.14rc1           13    10214  12.so.0.14[.0]
  1490.  1.2.15beta1-6       13    10215  12.so.0.15[.0]
  1491.  1.0.23rc1-5         10    10023  10.so.0.23[.0]
  1492.  1.2.15rc1-5         13    10215  12.so.0.15[.0]
  1493.  1.0.23              10    10023  10.so.0.23[.0]
  1494.  1.2.15              13    10215  12.so.0.15[.0]
  1495.  1.2.16beta1-2       13    10216  12.so.0.16[.0]
  1496.  1.2.16rc1           13    10216  12.so.0.16[.0]
  1497.  1.0.24              10    10024  10.so.0.24[.0]
  1498.  1.2.16              13    10216  12.so.0.16[.0]
  1499.  1.2.17beta1-2       13    10217  12.so.0.17[.0]
  1500.  1.0.25rc1           10    10025  10.so.0.25[.0]
  1501.  1.2.17rc1-3         13    10217  12.so.0.17[.0]
  1502.  1.0.25              10    10025  10.so.0.25[.0]
  1503.  1.2.17              13    10217  12.so.0.17[.0]
  1504.  1.0.26              10    10026  10.so.0.26[.0]
  1505.  1.2.18              13    10218  12.so.0.18[.0]
  1506.  1.2.19beta1-31      13    10219  12.so.0.19[.0]
  1507.  1.0.27rc1-6         10    10027  10.so.0.27[.0]
  1508.  1.2.19rc1-6         13    10219  12.so.0.19[.0]
  1509.  1.0.27              10    10027  10.so.0.27[.0]
  1510.  1.2.19              13    10219  12.so.0.19[.0]
  1511.  1.2.20beta01-04     13    10220  12.so.0.20[.0]
  1512.  1.0.28rc1-6         10    10028  10.so.0.28[.0]
  1513.  1.2.20rc1-6         13    10220  12.so.0.20[.0]
  1514.  1.0.28              10    10028  10.so.0.28[.0]
  1515.  1.2.20              13    10220  12.so.0.20[.0]
  1516.  1.2.21beta1-2       13    10221  12.so.0.21[.0]
  1517.  1.2.21rc1-3         13    10221  12.so.0.21[.0]
  1518.  1.0.29              10    10029  10.so.0.29[.0]
  1519.  1.2.21              13    10221  12.so.0.21[.0]
  1520.  1.2.22beta1-4       13    10222  12.so.0.22[.0]
  1521.  1.0.30rc1           13    10030  10.so.0.30[.0]
  1522.  1.2.22rc1           13    10222  12.so.0.22[.0]
  1523.  1.0.30              10    10030  10.so.0.30[.0]
  1524.  1.2.22              13    10222  12.so.0.22[.0]
  1525.  1.2.23beta01-05     13    10223  12.so.0.23[.0]
  1526.  1.2.23rc01          13    10223  12.so.0.23[.0]
  1527.  1.2.23              13    10223  12.so.0.23[.0]
  1528.  1.2.24beta01-02     13    10224  12.so.0.24[.0]
  1529.  1.2.24rc01          13    10224  12.so.0.24[.0]
  1530.  1.2.24              13    10224  12.so.0.24[.0]
  1531.  1.2.25beta01-06     13    10225  12.so.0.25[.0]
  1532.  1.2.25rc01-02       13    10225  12.so.0.25[.0]
  1533.  1.0.31              10    10031  10.so.0.31[.0]
  1534.  1.2.25              13    10225  12.so.0.25[.0]
  1535.  1.2.26beta01-06     13    10226  12.so.0.26[.0]
  1536.  1.2.26rc01          13    10226  12.so.0.26[.0]
  1537.  1.2.26              13    10226  12.so.0.26[.0]
  1538.  1.0.32              10    10032  10.so.0.32[.0]
  1539.  1.2.27beta01-06     13    10227  12.so.0.27[.0]
  1540.  1.2.27rc01          13    10227  12.so.0.27[.0]
  1541.  1.0.33              10    10033  10.so.0.33[.0]
  1542.  1.2.27              13    10227  12.so.0.27[.0]
  1543.  1.0.34              10    10034  10.so.0.34[.0]
  1544.  1.2.28              13    10228  12.so.0.28[.0]
  1545.  1.2.29beta01-03     13    10229  12.so.0.29[.0]
  1546.  1.2.29rc01          13    10229  12.so.0.29[.0]
  1547.  1.0.35              10    10035  10.so.0.35[.0]
  1548.  1.2.29              13    10229  12.so.0.29[.0]
  1549.  1.0.37              10    10037  10.so.0.37[.0]
  1550.  1.2.30beta01-04     13    10230  12.so.0.30[.0]
  1551.  1.0.38rc01-08       10    10038  10.so.0.38[.0]
  1552.  1.2.30rc01-08       13    10230  12.so.0.30[.0]
  1553.  1.0.38              10    10038  10.so.0.38[.0]
  1554.  1.2.30              13    10230  12.so.0.30[.0]
  1555.  1.0.39rc01-03       10    10039  10.so.0.39[.0]
  1556.  1.2.31rc01-03       13    10231  12.so.0.31[.0]
  1557.  1.0.39              10    10039  10.so.0.39[.0]
  1558.  1.2.31              13    10231  12.so.0.31[.0]
  1559.  1.2.32beta01-02     13    10232  12.so.0.32[.0]
  1560.  1.0.40rc01          10    10040  10.so.0.40[.0]
  1561.  1.2.32rc01          13    10232  12.so.0.32[.0]
  1562.  1.0.40              10    10040  10.so.0.40[.0]
  1563.  1.2.32              13    10232  12.so.0.32[.0]
  1564.  1.2.33beta01-02     13    10233  12.so.0.33[.0]
  1565.  1.2.33rc01-02       13    10233  12.so.0.33[.0]
  1566.  1.0.41rc01          10    10041  10.so.0.41[.0]
  1567.  1.2.33              13    10233  12.so.0.33[.0]
  1568.  1.0.41              10    10041  10.so.0.41[.0]
  1569.  1.2.34beta01-07     13    10234  12.so.0.34[.0]
  1570.  1.0.42rc01          10    10042  10.so.0.42[.0]
  1571.  1.2.34rc01          13    10234  12.so.0.34[.0]
  1572.  1.0.42              10    10042  10.so.0.42[.0]
  1573.  1.2.34              13    10234  12.so.0.34[.0]
  1574. Henceforth the source version will match the shared-library minor
  1575. and patch numbers; the shared-library major version number will be
  1576. used for changes in backward compatibility, as it is intended.  The
  1577. PNG_PNGLIB_VER macro, which is not used within libpng but is available
  1578. for applications, is an unsigned integer of the form xyyzz corresponding
  1579. to the source version x.y.z (leading zeros in y and z).  Beta versions
  1580. were given the previous public release number plus a letter, until
  1581. version 1.0.6j; from then on they were given the upcoming public
  1582. release number plus "betaNN" or "rcN".
  1583. .SH "SEE ALSO"
  1584. .IR libpngpf(3) ", " png(5)
  1585. .LP
  1586. .IR libpng :
  1587. .IP
  1588. http://libpng.sourceforge.net (follow the [DOWNLOAD] link)
  1589. http://www.libpng.org/pub/png
  1590. .LP
  1591. .IR zlib :
  1592. .IP
  1593. (generally) at the same location as
  1594. .I libpng
  1595. or at
  1596. .br
  1597. ftp://ftp.info-zip.org/pub/infozip/zlib
  1598. .LP
  1599. .IR PNG specification: RFC 2083
  1600. .IP
  1601. (generally) at the same location as
  1602. .I libpng
  1603. or at
  1604. .br
  1605. ftp://ftp.rfc-editor.org:/in-notes/rfc2083.txt
  1606. .br
  1607. or (as a W3C Recommendation) at
  1608. .br
  1609. http://www.w3.org/TR/REC-png.html
  1610. .LP
  1611. In the case of any inconsistency between the PNG specification
  1612. and this library, the specification takes precedence.
  1613. .SH AUTHORS
  1614. This man page: Glenn Randers-Pehrson
  1615. <glennrp at users.sourceforge.net>
  1616. The contributing authors would like to thank all those who helped
  1617. with testing, bug fixes, and patience.  This wouldn't have been
  1618. possible without all of you.
  1619. Thanks to Frank J. T. Wojcik for helping with the documentation.
  1620. Libpng version 1.2.34 - December 18, 2008:
  1621. Initially created in 1995 by Guy Eric Schalnat, then of Group 42, Inc.
  1622. Currently maintained by Glenn Randers-Pehrson (glennrp at users.sourceforge.net).
  1623. Supported by the PNG development group
  1624. .br
  1625. png-mng-implement at lists.sf.net
  1626. (subscription required; visit
  1627. png-mng-implement at lists.sourceforge.net (subscription required; visit
  1628. https://lists.sourceforge.net/lists/listinfo/png-mng-implement
  1629. to subscribe).
  1630. .SH COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
  1631. (This copy of the libpng notices is provided for your convenience.  In case of
  1632. any discrepancy between this copy and the notices in the file png.h that is
  1633. included in the libpng distribution, the latter shall prevail.)
  1634. If you modify libpng you may insert additional notices immediately following
  1635. this sentence.
  1636. libpng versions 1.2.6, August 15, 2004, through 1.2.34, December 18, 2008, are
  1637. Copyright (c) 2004,2006-2008 Glenn Randers-Pehrson, and are
  1638. distributed according to the same disclaimer and license as libpng-1.2.5
  1639. with the following individual added to the list of Contributing Authors
  1640.    Cosmin Truta
  1641. libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are
  1642. Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are
  1643. distributed according to the same disclaimer and license as libpng-1.0.6
  1644. with the following individuals added to the list of Contributing Authors
  1645.    Simon-Pierre Cadieux
  1646.    Eric S. Raymond
  1647.    Gilles Vollant
  1648. and with the following additions to the disclaimer:
  1649.    There is no warranty against interference with your
  1650.    enjoyment of the library or against infringement.
  1651.    There is no warranty that our efforts or the library
  1652.    will fulfill any of your particular purposes or needs.
  1653.    This library is provided with all faults, and the entire
  1654.    risk of satisfactory quality, performance, accuracy, and
  1655.    effort is with the user.
  1656. libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
  1657. Copyright (c) 1998, 1999 Glenn Randers-Pehrson
  1658. Distributed according to the same disclaimer and license as libpng-0.96,
  1659. with the following individuals added to the list of Contributing Authors:
  1660.    Tom Lane
  1661.    Glenn Randers-Pehrson
  1662.    Willem van Schaik
  1663. libpng versions 0.89, June 1996, through 0.96, May 1997, are
  1664. Copyright (c) 1996, 1997 Andreas Dilger
  1665. Distributed according to the same disclaimer and license as libpng-0.88,
  1666. with the following individuals added to the list of Contributing Authors:
  1667.    John Bowler
  1668.    Kevin Bracey
  1669.    Sam Bushell
  1670.    Magnus Holmgren
  1671.    Greg Roelofs
  1672.    Tom Tanner
  1673. libpng versions 0.5, May 1995, through 0.88, January 1996, are
  1674. Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
  1675. For the purposes of this copyright and license, "Contributing Authors"
  1676. is defined as the following set of individuals:
  1677.    Andreas Dilger
  1678.    Dave Martindale
  1679.    Guy Eric Schalnat
  1680.    Paul Schmidt
  1681.    Tim Wegner
  1682. The PNG Reference Library is supplied "AS IS".  The Contributing Authors
  1683. and Group 42, Inc. disclaim all warranties, expressed or implied,
  1684. including, without limitation, the warranties of merchantability and of
  1685. fitness for any purpose.  The Contributing Authors and Group 42, Inc.
  1686. assume no liability for direct, indirect, incidental, special, exemplary,
  1687. or consequential damages, which may result from the use of the PNG
  1688. Reference Library, even if advised of the possibility of such damage.
  1689. Permission is hereby granted to use, copy, modify, and distribute this
  1690. source code, or portions hereof, for any purpose, without fee, subject
  1691. to the following restrictions:
  1692. 1. The origin of this source code must not be misrepresented.
  1693. 2. Altered versions must be plainly marked as such and
  1694.    must not be misrepresented as being the original source.
  1695. 3. This Copyright notice may not be removed or altered from
  1696.    any source or altered source distribution.
  1697. The Contributing Authors and Group 42, Inc. specifically permit, without
  1698. fee, and encourage the use of this source code as a component to
  1699. supporting the PNG file format in commercial products.  If you use this
  1700. source code in a product, acknowledgment is not required but would be
  1701. appreciated.
  1702. A "png_get_copyright" function is available, for convenient use in "about"
  1703. boxes and the like:
  1704.    printf("%s",png_get_copyright(NULL));
  1705. Also, the PNG logo (in PNG format, of course) is supplied in the
  1706. files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
  1707. Libpng is OSI Certified Open Source Software.  OSI Certified Open Source is a
  1708. certification mark of the Open Source Initiative.
  1709. Glenn Randers-Pehrson
  1710. glennrp at users.sourceforge.net
  1711. December 18, 2008
  1712. ." end of man page