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

浏览器

开发平台:

Unix_Linux

  1. libpng FAQ - August 20, 1995
  2. Maintainer:
  3. Guy Eric Schalnat: schalnat@group42.com  CompuServe: 75501,1625
  4. Contents:
  5. 1) General Questions
  6. 1.1) How official is this FAQ?
  7. 1.2) How often is this FAQ posted?
  8. 1.3) Where can I get this FAQ, libpng, zlib, the PNG
  9.      specification, test images, etc.?
  10. 1.4) How ready is libpng?
  11. 1.5) How portable is libpng?
  12. 1.6) When will libpng be out of Beta?
  13. 1.7) What remains to be done in libpng for the 1.0 release?
  14. 1.8) Can I help?
  15. 1.9) Why don't you answer your mail?
  16. 2) Libpng questions
  17. 2.1) Does the order of functions calls matter?
  18. 2.2) When I try to read/write a png image, it doesn't work.
  19. 2.3) Do I have to start with example.c?
  20. 2.4) What things should I be careful of?
  21. 2.5) Why doesn't example.c compile?
  22. 3) Critical Patches
  23. No known bugs (for now :-).
  24. 4) Non-critical patches
  25. No known bugs (for now :-).
  26. Questions:
  27. 1) General Questions
  28. 1.1) How official is this FAQ?
  29. As it was written by the author of libpng (that's me :), it's
  30. about offical as one can get.  However, it is not ready for
  31. prime time yet, as libpng is still in beta, and thus its
  32. users are of the sort that are willing to deal with beta
  33. software.  Thus, I assume all of you reading this have a
  34. basic familiarity with PNG, libpng, and C programming.  I'll
  35. write a basic section for libpng later, as well as some quick
  36. stuff on PNG itself (but this will not be the PNG FAQ.  I just
  37. don't have that kind of time).
  38. 1.2) How often is this FAQ posted?
  39. As often as events warrant.  I doubt it'll get stale, and as
  40. it is not (and may never be) actually posted to a newsgroup,
  41. I feel no need to make monthy postings.
  42. 1.3) Where can I get this FAQ, libpng, zlib, the PNG 
  43. specification, test images, etc.?
  44. Everything should be at ftp://ftp.uu.net/graphics/png and
  45. mirror sites.  On CompuServe, it should be at GO GRAPHSUPPORT
  46. in the Png Development library (lib 20).  Failing that, try
  47. my ftp site at ftp://ftp.group42.com/pub/png or web site at
  48. http://www.group42.com/  If you have trouble getting to these,
  49. the numerical address is 204.94.158.25
  50. 1.4) How ready is libpng?
  51. In its current incarnation (0.8), it still may have a few bugs.
  52. I think I got all of the bugs this time, but one never knows.
  53. Also, the dithering currently in libpng is horrid, so that
  54. needs work.  Finally, I have yet to implement medium model
  55. support.
  56. 1.5) How portable is libpng?
  57. As portable as I can make it.  It needs int's of at least
  58. 16 bits, and longs of at least 32 bits.  It has not been
  59. tried for char's larger then 8 bits.  It should support
  60. any reasonable K&R C compiler, as well as any ANSI C
  61. compiler.  The most you should need to do is change the
  62. includes in pngconf.h.  So far, I know of no compiler in use
  63. that libpng will not compile on.
  64. 1.6) When will libpng be out of Beta?
  65. That depends on my workload here.  I'm writing libpng for
  66. free, which generates tons of good will, but doesn't help
  67. put food on the table, so there are times I just can't do
  68. any real work on it.  There is still some work to be done
  69. (see question 1.7), so don't expect the official version
  70. before September (and that may be pushing it).  I'll try
  71. to get the next (last?) beta version out my early
  72. September.  Be warned, I always seem to take twice as
  73. long as I think I will.
  74. 1.7) What remains to be done in libpng for the 1.0 release?
  75. Add Tim Wegner's medium memory model support. (Thanks, Tim).
  76. Improve the dithering.
  77. Rewrite libpng.txt, and comment the code better.
  78. Test with a final zlib.
  79. 1.8) Can I help?
  80. Sweet words.  The most helpful thing you can do for the
  81. 1.0 release is help testing on your compiler.  After this
  82. release, though, there is a large list of things that ought
  83. to be done to make libpng be more full featured.  We'll
  84. talk about this later, as I don't want to add tons of new
  85. code until after 1.0 gets out the door.  Please send me
  86. any makefile changes and/or other changes needed to support
  87. your compiler (with a #ifdef for the code changes).
  88. If any of you are good at technical writing, take a look at
  89. libpng.txt and correct it (or rewrite it) as necessary.  I
  90. am not a writer, I'm a programmer.  It shows.
  91. 1.9) Why don't you answer your mail?
  92. I've been busy.  I'm sorry about that, and I've got to get
  93. into the habit of at least replying that I got the message.
  94. Also, some of you have sent me problems that I haven't gotten
  95. back to you yet.  If it is still a problem, you may want to
  96. give me a short message and remind me that I need to look into
  97. it.  Libpng is being tested by more people than I dared hope
  98. (which is a good thing), and I was unprepared to deal with so
  99. many problems so soon.
  100. 2) Libpng questions
  101. 2.1) Does the order of functions calls matter?
  102. In general, yes.  If you stick with the order I used in libpng.txt
  103. and example.c, you should be safe.  Be warned, however, that I
  104. messed up the order of png_set_interlace_handling().  It needs
  105. to be called *before* png_start_read_image(), not after.  Oops.
  106. The exceptions to this rule are all the png_set ... calls.
  107. They can be done in any order, but they all have to be done
  108. in the area indicated by libpng.txt/example.c.
  109. 2.2) When I try to read/write a png image, it doesn't work.
  110. Does zlib's test program work (example.c)?  Does libpng's test
  111. program work (testpng.c)?  Have you installed the patches at
  112. the end of this FAQ?  After all that, if the problem continues,
  113. e-mail me, and we'll try to fix it.  If you don't have much 
  114. programming experience, be patient about the fix.  Code
  115. fragments help, as do *small* images (uuencoded please).  If
  116. I don't get back to you right away, give me some time.  Thanks.
  117. 2.3) Do I have to start with example.c?
  118. No, but most people have had much better luck doing that.  Seems
  119. I didn't explain things well in libpng.txt, so things are not
  120. intuitive to people (which could be an api design problem also).
  121. Sometime in the future, we'll revisit the api design, and try
  122. to make it easier to use.  I'll rewrite libpng.txt before the
  123. 1.0 release.
  124. 2.4) What things should I be careful of?
  125. The main gotcha is calling png_read_init() before png_info_init().
  126. Also, always make sure you have a correct setjmp buffer.  That's
  127. all I can think of for now.
  128. 2.5) Why doesn't example.c compile?
  129. I wrote example.c as a staring point for using libpng.  It doesn't
  130. compile because I don't know how you want to do things like allocating
  131. memory to hold the image, so I left that code out.  If you go in and
  132. finish it up, it should work fine.  The file pngtest.c gives a
  133. very simple example of reading and writing png files.
  134. 3) Critical Patches
  135. No known bugs (for now :-).
  136. 4) Non-critical patches
  137. No known bugs (for now :-).
  138. That's it so far as I know.  If I missed something, yell.
  139. -Guy