write_png.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:2k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * Dump an Image to a Portable Network Graphics (PNG) file
  3.  ****************************************************************************
  4.   Copyright (C) 2004 VideoLAN
  5.   Author: Rocky Bernstein
  6.  
  7.   This program is free software; you can redistribute it and/or modify
  8.   it under the terms of the GNU General Public License as published by
  9.   the Free Software Foundation; either version 2 of the License, or
  10.   (at your option) any later version.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License
  18.   along with this program; if not, write to the Free Software
  19.   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  20.  *****************************************************************************/
  21. #include <png.h>
  22. /* 
  23.    Dump an image to a Portable Network Graphics (PNG) file. File_name
  24.    is where the file goes, i_height and i_width are the height and
  25.    width in pixels of the image. The data for the image is stored as a
  26.    linear array RGB pixel entries: one byte for each of red, green,
  27.    and blue component. Thus row[i] will begin at rgb_image +
  28.    i*(i_width*3) and the blue pixel at image[i][0] would be rgb_image
  29.    + i*(i_width*3) + 1.
  30.    text_ptr contains comments that can be written to the image. It can
  31.    be null. i_text_count is the number of entries in text_ptr.
  32.    
  33.  */
  34. void write_png(const char *file_name, png_uint_32 i_height, 
  35.        png_uint_32 i_width, void *rgb_image, 
  36.        /*in*/ png_text *text_ptr, int i_text_count );