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

图片显示

开发平台:

Visual C++

  1. /* pngrio.c - functions for data input
  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 input.  Users which need
  7.    special handling are expected to write a function which has the same
  8.    arguments as this, and perform a similar function, but possibly has
  9.    a different input method.  Note that you shouldn't change this
  10.    function, but rather write a replacement function and then make
  11.    libpng use it at run time with png_set_read_fn(...) */
  12. #define PNG_INTERNAL
  13. #include "png.h"
  14. /* Read the data from whatever input you are using.  The default routine
  15.    reads from 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 reads.  This should never be asked
  18.    to read more then 64K on a 16 bit machine.  The cast to png_size_t is
  19.    there to quiet some compilers */
  20. void
  21. png_read_data(png_structp png_ptr, png_bytep data, png_uint_32 length)
  22. {
  23.    if (png_ptr->read_data_fn)
  24.       (*(png_ptr->read_data_fn))(png_ptr, data, length);
  25.    else
  26.       png_error(png_ptr, "Call to NULL read function");
  27. }
  28. /* This is the function which does the actual reading of data.  If you are
  29.    not reading from a standard C stream, you should create a replacement
  30.    read_data function and use it at run time with png_set_read_fn(), rather
  31.    than changing the library. */
  32. #ifndef USE_FAR_KEYWORD
  33. static void
  34. png_default_read_data(png_structp png_ptr, png_bytep data, png_uint_32 length)
  35. {
  36.    png_uint_32 check;
  37.    check = fread(data, 1, (size_t)length, (FILE *)png_ptr->io_ptr);
  38.    if (check != length)
  39.    {
  40.       png_error(png_ptr, "Read 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.  
  49. #define NEAR_BUF_SIZE 1024
  50. #define MIN(a,b) (a <= b ? a : b)
  51.  
  52. #ifdef _MSC_VER
  53. /* for FP_OFF */
  54. #include <dos.h>
  55. #endif
  56.  
  57. static void
  58. png_default_read_data(png_structp png_ptr, png_bytep data, png_uint_32 length)
  59. {
  60.    png_uint_32 check;
  61.    png_byte *n_data;
  62.    /* Check if data really is near. If so, use usual code. */
  63. #ifdef _MSC_VER
  64.    /* do it this way just to quiet warning */
  65.    FP_OFF(n_data) = FP_OFF(data);
  66.    if (FP_SEG(n_data) == FP_SEG(data))
  67. #else
  68.    /* this works in MSC also but with lost segment warning */
  69.    n_data = (png_byte *)data;
  70.    if ((png_bytep)n_data == data)
  71. #endif
  72.    {
  73.       check = fread(n_data, 1, (size_t)length, (FILE *)png_ptr->io_ptr);
  74.    }
  75.    else
  76.    {
  77.       png_byte buf[NEAR_BUF_SIZE];
  78.       png_size_t read, remaining, err;
  79.       check = 0;
  80.       remaining = (png_size_t)length;
  81.       do
  82.       {
  83.          read = MIN(NEAR_BUF_SIZE, remaining);
  84.          err = fread(buf, 1, read, (FILE *)png_ptr->io_ptr);
  85.          png_memcpy(data, buf, read); /* copy far buffer to near buffer */
  86.          if(err != read)
  87.             break;
  88.          else
  89.             check += err;
  90.          data += read;
  91.          remaining -= read;
  92.       }
  93.       while (remaining != 0);
  94.    }
  95.    if (check != length)
  96.    {
  97.       png_error(png_ptr, "read Error");
  98.    }
  99. }
  100. #endif
  101. /* This function allows the application to supply a new input function
  102.    for libpng if standard C streams aren't being used.
  103.    This function takes as its arguments:
  104.    png_ptr      - pointer to a png input data structure
  105.    io_ptr       - pointer to user supplied structure containing info about
  106.                   the input functions.  May be NULL.
  107.    read_data_fn - pointer to a new input function which takes as it's
  108.                   arguments a pointer to a png_struct, a pointer to
  109.                   a location where input data can be stored, and a 32-bit
  110.                   unsigned int which is the number of bytes to be read.
  111.                   To exit and output any fatal error messages the new write
  112.                   function should call png_error(png_ptr, "Error msg"). */
  113. void
  114. png_set_read_fn(png_structp png_ptr, png_voidp io_ptr,
  115.    png_rw_ptr read_data_fn)
  116. {
  117.    png_ptr->io_ptr = io_ptr;
  118.    if (read_data_fn)
  119.       png_ptr->read_data_fn = read_data_fn;
  120.    else
  121.       png_ptr->read_data_fn = png_default_read_data;
  122.    /* It is an error to write to a read device */
  123.    png_ptr->write_data_fn = NULL;
  124. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  125.    png_ptr->output_flush_fn = NULL;
  126. #endif /* PNG_WRITE_FLUSH_SUPPORTED */
  127. }