PNGWIO.C
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:6k
源码类别:

图片显示

开发平台:

Visual C++

  1. /* pngwio.c - functions for data output
  2.    libpng 1.0 beta 3 - version 0.89
  3.    For conditions of distribution and use, see copyright notice in png.h
  4.    Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
  5.    May 25, 1996
  6.    This file provides a location for all output.  Users which need
  7.    special handling are expected to write functions which have the same
  8.    arguments as these, and perform similar functions, but possibly use
  9.    different output methods.  Note that you shouldn't change these
  10.    functions, but rather write replacement functions and then change
  11.    them at run time with png_set_write_fn(...) */
  12. #define PNG_INTERNAL
  13. #include "png.h"
  14. /* Write the data to whatever output you are using.  The default routine
  15.    writes to a file pointer.  Note that this routine sometimes gets called
  16.    with very small lengths, so you should implement some kind of simple
  17.    buffering if you are using unbuffered writes.  This should never be asked
  18.    to write more then 64K on a 16 bit machine.  The cast to png_size_t is
  19.    there to quiet warnings of certain compilers. */
  20. void
  21. png_write_data(png_structp png_ptr, png_bytep data, png_uint_32 length)
  22. {
  23.    if (png_ptr->write_data_fn)
  24.       (*(png_ptr->write_data_fn))(png_ptr, data, length);
  25.    else
  26.       png_error(png_ptr, "Call to NULL write function");
  27. }
  28. /* This is the function which does the actual writing of data.  If you are
  29.    not writing to a standard C stream, you should create a replacement
  30.    write_data function and use it at run time with png_set_write_fn(), rather
  31.    than changing the library. */
  32. #ifndef USE_FAR_KEYWORD
  33. static void
  34. png_default_write_data(png_structp png_ptr, png_bytep data, png_uint_32 length)
  35. {
  36.    png_uint_32 check;
  37.    check = fwrite(data, 1, (png_size_t)length, (FILE *)(png_ptr->io_ptr));
  38.    if (check != length)
  39.    {
  40.       png_error(png_ptr, "Write Error");
  41.    }
  42. }
  43. #else
  44. /* this is the model-independent version. Since the standard I/O library
  45.    can't handle far buffers in the medium and small models, we have to copy
  46.    the data.
  47. */
  48. #define NEAR_BUF_SIZE 1024
  49. #define MIN(a,b) (a <= b ? a : b)
  50. #ifdef _MSC_VER
  51. /* for FP_OFF */
  52. #include <dos.h>
  53. #endif
  54. static void
  55. png_default_write_data(png_structp png_ptr, png_bytep data, png_uint_32 length)
  56. {
  57.    png_uint_32 check;
  58.    png_byte *n_data;
  59.    /* Check if data really is near. If so, use usual code. */
  60. #ifdef _MSC_VER
  61.    /* do it this way just to quiet warning */
  62.    FP_OFF(n_data) = FP_OFF(data);
  63.    if (FP_SEG(n_data) == FP_SEG(data))
  64. #else
  65.    /* this works in MSC also but with lost segment warning */
  66.    n_data = (png_byte *)data;
  67.    if ((png_bytep)n_data == data)
  68. #endif
  69.    {
  70.       check = fwrite(n_data, 1, (png_size_t)length, (FILE *)(png_ptr->io_ptr));
  71.    }
  72.    else
  73.    {
  74.       png_byte buf[NEAR_BUF_SIZE];
  75.       png_size_t written, remaining, err;
  76.       check = 0;
  77.       remaining = (png_size_t)length;
  78.       do
  79.       {
  80.          written = MIN(NEAR_BUF_SIZE, remaining);
  81.          png_memcpy(buf, data, written); /* copy far buffer to near buffer */
  82.          err = fwrite(buf, 1, written, (FILE *)(png_ptr->io_ptr));
  83.          if (err != written)
  84.             break;
  85.          else
  86.             check += err;
  87.          data += written;
  88.          remaining -= written;
  89.       }
  90.       while (remaining != 0);
  91.    }
  92.    if (check != length)
  93.    {
  94.       png_error(png_ptr, "Write Error");
  95.    }
  96. }
  97. #endif
  98. /* This function is called to output any data pending writing (normally
  99.    to disk).  After png_flush is called, there should be no data pending
  100.    writing in any buffers. */
  101. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  102. void
  103. png_flush(png_structp png_ptr)
  104. {
  105.    if (png_ptr->output_flush_fn)
  106.       (*(png_ptr->output_flush_fn))(png_ptr);
  107. }
  108. static void
  109. png_default_flush(png_structp png_ptr)
  110. {
  111.    if ((FILE *)(png_ptr->io_ptr))
  112.       fflush((FILE *)(png_ptr->io_ptr));
  113. }
  114. #endif
  115. /* This function allows the application to supply new output functions for
  116.    libpng if standard C streams aren't being used.
  117.    This function takes as its arguments:
  118.    png_ptr       - pointer to a png output data structure
  119.    io_ptr        - pointer to user supplied structure containing info about
  120.                    the output functions.  May be NULL.
  121.    write_data_fn - pointer to a new output function which takes as its
  122.                    arguments a pointer to a png_struct, a pointer to
  123.                    data to be written, and a 32-bit unsigned int which is
  124.                    the number of bytes to be written.  The new write
  125.                    function should call png_error(png_ptr, "Error msg")
  126.                    to exit and output any fatal error messages.
  127.    flush_data_fn - pointer to a new flush function which takes as its
  128.                    arguments a pointer to a png_struct.  After a call to
  129.                    the flush function, there should be no data in any buffers
  130.                    or pending transmission.  If the output method doesn't do
  131.                    any buffering of ouput, a function prototype must still be
  132.                    supplied although it doesn't have to do anything.  If
  133.                    PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile
  134.                    time, output_flush_fn will be ignored, although it must be
  135.                    supplied for compatibility. */
  136. void
  137. png_set_write_fn(png_structp png_ptr, png_voidp io_ptr,
  138.    png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn)
  139. {
  140.    png_ptr->io_ptr = io_ptr;
  141.    if (write_data_fn)
  142.       png_ptr->write_data_fn = write_data_fn;
  143.    else
  144.       png_ptr->write_data_fn = png_default_write_data;
  145. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  146.    if (output_flush_fn)
  147.       png_ptr->output_flush_fn = output_flush_fn;
  148.    else
  149.       png_ptr->output_flush_fn = png_default_flush;
  150. #endif /* PNG_WRITE_FLUSH_SUPPORTED */
  151.    /* It is an error to read while writing a png file */
  152.    png_ptr->read_data_fn = NULL;
  153. }