pngwio.c
上传用户:jnfxsk
上传日期:2022-06-16
资源大小:3675k
文件大小:7k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. /* pngwio.c - functions for data output
  2.  *
  3.  * libpng 1.2.8 - December 3, 2004
  4.  * For conditions of distribution and use, see copyright notice in png.h
  5.  * Copyright (c) 1998-2004 Glenn Randers-Pehrson
  6.  * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
  7.  * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
  8.  *
  9.  * This file provides a location for all output.  Users who need
  10.  * special handling are expected to write functions that have the same
  11.  * arguments as these and perform similar functions, but that possibly
  12.  * use different output methods.  Note that you shouldn't change these
  13.  * functions, but rather write replacement functions and then change
  14.  * them at run time with png_set_write_fn(...).
  15.  */
  16. #define PNG_INTERNAL
  17. #include "png.h"
  18. #ifdef PNG_WRITE_SUPPORTED
  19. /* Write the data to whatever output you are using.  The default routine
  20.    writes to a file pointer.  Note that this routine sometimes gets called
  21.    with very small lengths, so you should implement some kind of simple
  22.    buffering if you are using unbuffered writes.  This should never be asked
  23.    to write more than 64K on a 16 bit machine.  */
  24. void /* PRIVATE */
  25. png_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
  26. {
  27.    if (png_ptr->write_data_fn != NULL )
  28.       (*(png_ptr->write_data_fn))(png_ptr, data, length);
  29.    else
  30.       png_error(png_ptr, "Call to NULL write function");
  31. }
  32. #if !defined(PNG_NO_STDIO)
  33. /* This is the function that does the actual writing of data.  If you are
  34.    not writing to a standard C stream, you should create a replacement
  35.    write_data function and use it at run time with png_set_write_fn(), rather
  36.    than changing the library. */
  37. #ifndef USE_FAR_KEYWORD
  38. void PNGAPI
  39. png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
  40. {
  41.    png_uint_32 check;
  42. #if defined(_WIN32_WCE)
  43.    if ( !WriteFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
  44.       check = 0;
  45. #else
  46.    check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
  47. #endif
  48.    if (check != length)
  49.       png_error(png_ptr, "Write Error");
  50. }
  51. #else
  52. /* this is the model-independent version. Since the standard I/O library
  53.    can't handle far buffers in the medium and small models, we have to copy
  54.    the data.
  55. */
  56. #define NEAR_BUF_SIZE 1024
  57. #define MIN(a,b) (a <= b ? a : b)
  58. void PNGAPI
  59. png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
  60. {
  61.    png_uint_32 check;
  62.    png_byte *near_data;  /* Needs to be "png_byte *" instead of "png_bytep" */
  63.    png_FILE_p io_ptr;
  64.    /* Check if data really is near. If so, use usual code. */
  65.    near_data = (png_byte *)CVT_PTR_NOCHECK(data);
  66.    io_ptr = (png_FILE_p)CVT_PTR(png_ptr->io_ptr);
  67.    if ((png_bytep)near_data == data)
  68.    {
  69. #if defined(_WIN32_WCE)
  70.       if ( !WriteFile(io_ptr, near_data, length, &check, NULL) )
  71.          check = 0;
  72. #else
  73.       check = fwrite(near_data, 1, length, io_ptr);
  74. #endif
  75.    }
  76.    else
  77.    {
  78.       png_byte buf[NEAR_BUF_SIZE];
  79.       png_size_t written, remaining, err;
  80.       check = 0;
  81.       remaining = length;
  82.       do
  83.       {
  84.          written = MIN(NEAR_BUF_SIZE, remaining);
  85.          png_memcpy(buf, data, written); /* copy far buffer to near buffer */
  86. #if defined(_WIN32_WCE)
  87.          if ( !WriteFile(io_ptr, buf, written, &err, NULL) )
  88.             err = 0;
  89. #else
  90.          err = fwrite(buf, 1, written, io_ptr);
  91. #endif
  92.          if (err != written)
  93.             break;
  94.          else
  95.             check += err;
  96.          data += written;
  97.          remaining -= written;
  98.       }
  99.       while (remaining != 0);
  100.    }
  101.    if (check != length)
  102.       png_error(png_ptr, "Write Error");
  103. }
  104. #endif
  105. #endif
  106. /* This function is called to output any data pending writing (normally
  107.    to disk).  After png_flush is called, there should be no data pending
  108.    writing in any buffers. */
  109. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  110. void /* PRIVATE */
  111. png_flush(png_structp png_ptr)
  112. {
  113.    if (png_ptr->output_flush_fn != NULL)
  114.       (*(png_ptr->output_flush_fn))(png_ptr);
  115. }
  116. #if !defined(PNG_NO_STDIO)
  117. void PNGAPI
  118. png_default_flush(png_structp png_ptr)
  119. {
  120. #if !defined(_WIN32_WCE)
  121.    png_FILE_p io_ptr;
  122.    io_ptr = (png_FILE_p)CVT_PTR((png_ptr->io_ptr));
  123.    if (io_ptr != NULL)
  124.       fflush(io_ptr);
  125. #endif
  126. }
  127. #endif
  128. #endif
  129. /* This function allows the application to supply new output functions for
  130.    libpng if standard C streams aren't being used.
  131.    This function takes as its arguments:
  132.    png_ptr       - pointer to a png output data structure
  133.    io_ptr        - pointer to user supplied structure containing info about
  134.                    the output functions.  May be NULL.
  135.    write_data_fn - pointer to a new output function that takes as its
  136.                    arguments a pointer to a png_struct, a pointer to
  137.                    data to be written, and a 32-bit unsigned int that is
  138.                    the number of bytes to be written.  The new write
  139.                    function should call png_error(png_ptr, "Error msg")
  140.                    to exit and output any fatal error messages.
  141.    flush_data_fn - pointer to a new flush function that takes as its
  142.                    arguments a pointer to a png_struct.  After a call to
  143.                    the flush function, there should be no data in any buffers
  144.                    or pending transmission.  If the output method doesn't do
  145.                    any buffering of ouput, a function prototype must still be
  146.                    supplied although it doesn't have to do anything.  If
  147.                    PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile
  148.                    time, output_flush_fn will be ignored, although it must be
  149.                    supplied for compatibility. */
  150. void PNGAPI
  151. png_set_write_fn(png_structp png_ptr, png_voidp io_ptr,
  152.    png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn)
  153. {
  154.    png_ptr->io_ptr = io_ptr;
  155. #if !defined(PNG_NO_STDIO)
  156.    if (write_data_fn != NULL)
  157.       png_ptr->write_data_fn = write_data_fn;
  158.    else
  159.       png_ptr->write_data_fn = png_default_write_data;
  160. #else
  161.    png_ptr->write_data_fn = write_data_fn;
  162. #endif
  163. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  164. #if !defined(PNG_NO_STDIO)
  165.    if (output_flush_fn != NULL)
  166.       png_ptr->output_flush_fn = output_flush_fn;
  167.    else
  168.       png_ptr->output_flush_fn = png_default_flush;
  169. #else
  170.    png_ptr->output_flush_fn = output_flush_fn;
  171. #endif
  172. #endif /* PNG_WRITE_FLUSH_SUPPORTED */
  173.    /* It is an error to read while writing a png file */
  174.    if (png_ptr->read_data_fn != NULL)
  175.    {
  176.       png_ptr->read_data_fn = NULL;
  177.       png_warning(png_ptr,
  178.          "Attempted to set both read_data_fn and write_data_fn in");
  179.       png_warning(png_ptr,
  180.          "the same structure.  Resetting read_data_fn to NULL.");
  181.    }
  182. }
  183. #if defined(USE_FAR_KEYWORD)
  184. #if defined(_MSC_VER)
  185. void *png_far_to_near(png_structp png_ptr,png_voidp ptr, int check)
  186. {
  187.    void *near_ptr;
  188.    void FAR *far_ptr;
  189.    FP_OFF(near_ptr) = FP_OFF(ptr);
  190.    far_ptr = (void FAR *)near_ptr;
  191.    if(check != 0)
  192.       if(FP_SEG(ptr) != FP_SEG(far_ptr))
  193.          png_error(png_ptr,"segment lost in conversion");
  194.    return(near_ptr);
  195. }
  196. #  else
  197. void *png_far_to_near(png_structp png_ptr,png_voidp ptr, int check)
  198. {
  199.    void *near_ptr;
  200.    void FAR *far_ptr;
  201.    near_ptr = (void FAR *)ptr;
  202.    far_ptr = (void FAR *)near_ptr;
  203.    if(check != 0)
  204.       if(far_ptr != ptr)
  205.          png_error(png_ptr,"segment lost in conversion");
  206.    return(near_ptr);
  207. }
  208. #   endif
  209. #   endif
  210. #endif /* PNG_WRITE_SUPPORTED */