Subversion Repositories pentevo

Rev

Rev 783 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed | ?url?

  1. #pragma once
  2. #define PNG_NO_STDIO
  3. #define PNG_NO_GLOBAL_ARRAYS
  4.  
  5. #include "png/zlib.h"
  6. #include "png/pngconf.h"
  7. #include "png/png.h"
  8.  
  9. bool PngInit();
  10. void PngDone();
  11. BOOL PngSaveImage (FILE *pfFile, png_byte *pDiData,
  12.                    int iWidth, int iHeight, png_color bkgColor);
  13.