JDATADST.c
上传用户:qiutianh
上传日期:2022-08-08
资源大小:939k
文件大小:6k
源码类别:

图形图象

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////////////
  2. //
  3. // Note : this file is included as part of the Smaller Animals Software
  4. // JpegFile package. Though this file has not been modified from it's 
  5. // original IJG 6a form, it is not the responsibility on the Independent
  6. // JPEG Group to answer questions regarding this code.
  7. //
  8. // Any questions you have about this code should be addressed to :
  9. //
  10. // CHRISDL@PAGESZ.NET - the distributor of this package.
  11. //
  12. // Remember, by including this code in the JpegFile package, Smaller 
  13. // Animals Software assumes all responsibilities for answering questions
  14. // about it. If we (SA Software) can't answer your questions ourselves, we 
  15. // will direct you to people who can.
  16. //
  17. // Thanks, CDL.
  18. //
  19. ////////////////////////////////////////////////////////////////////////
  20. /*
  21.  * jdatadst.c
  22.  *
  23.  * Copyright (C) 1994-1996, Thomas G. Lane.
  24.  * This file is part of the Independent JPEG Group's software.
  25.  * For conditions of distribution and use, see the accompanying README file.
  26.  *
  27.  * This file contains compression data destination routines for the case of
  28.  * emitting JPEG data to a file (or any stdio stream).  While these routines
  29.  * are sufficient for most applications, some will want to use a different
  30.  * destination manager.
  31.  * IMPORTANT: we assume that fwrite() will correctly transcribe an array of
  32.  * JOCTETs into 8-bit-wide elements on external storage.  If char is wider
  33.  * than 8 bits on your machine, you may need to do some tweaking.
  34.  */
  35. /* this is not a core library module, so it doesn't define JPEG_INTERNALS */
  36. #include "jinclude.h"
  37. #include "jpeglib.h"
  38. #include "jerror.h"
  39. /* Expanded data destination object for stdio output */
  40. typedef struct {
  41.   struct jpeg_destination_mgr pub; /* public fields */
  42.   FILE * outfile; /* target stream */
  43.   JOCTET * buffer; /* start of buffer */
  44. } my_destination_mgr;
  45. typedef my_destination_mgr * my_dest_ptr;
  46. #define OUTPUT_BUF_SIZE  4096 /* choose an efficiently fwrite'able size */
  47. /*
  48.  * Initialize destination --- called by jpeg_start_compress
  49.  * before any data is actually written.
  50.  */
  51. METHODDEF(void)
  52. init_destination (j_compress_ptr cinfo)
  53. {
  54.   my_dest_ptr dest = (my_dest_ptr) cinfo->dest;
  55.   /* Allocate the output buffer --- it will be released when done with image */
  56.   dest->buffer = (JOCTET *)
  57.       (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  58.   OUTPUT_BUF_SIZE * SIZEOF(JOCTET));
  59.   dest->pub.next_output_byte = dest->buffer;
  60.   dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
  61. }
  62. /*
  63.  * Empty the output buffer --- called whenever buffer fills up.
  64.  *
  65.  * In typical applications, this should write the entire output buffer
  66.  * (ignoring the current state of next_output_byte & free_in_buffer),
  67.  * reset the pointer & count to the start of the buffer, and return TRUE
  68.  * indicating that the buffer has been dumped.
  69.  *
  70.  * In applications that need to be able to suspend compression due to output
  71.  * overrun, a FALSE return indicates that the buffer cannot be emptied now.
  72.  * In this situation, the compressor will return to its caller (possibly with
  73.  * an indication that it has not accepted all the supplied scanlines).  The
  74.  * application should resume compression after it has made more room in the
  75.  * output buffer.  Note that there are substantial restrictions on the use of
  76.  * suspension --- see the documentation.
  77.  *
  78.  * When suspending, the compressor will back up to a convenient restart point
  79.  * (typically the start of the current MCU). next_output_byte & free_in_buffer
  80.  * indicate where the restart point will be if the current call returns FALSE.
  81.  * Data beyond this point will be regenerated after resumption, so do not
  82.  * write it out when emptying the buffer externally.
  83.  */
  84. METHODDEF(boolean)
  85. empty_output_buffer (j_compress_ptr cinfo)
  86. {
  87.   my_dest_ptr dest = (my_dest_ptr) cinfo->dest;
  88.   if (JFWRITE(dest->outfile, dest->buffer, OUTPUT_BUF_SIZE) !=
  89.       (size_t) OUTPUT_BUF_SIZE)
  90.     ERREXIT(cinfo, JERR_FILE_WRITE);
  91.   dest->pub.next_output_byte = dest->buffer;
  92.   dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
  93.   return TRUE;
  94. }
  95. /*
  96.  * Terminate destination --- called by jpeg_finish_compress
  97.  * after all data has been written.  Usually needs to flush buffer.
  98.  *
  99.  * NB: *not* called by jpeg_abort or jpeg_destroy; surrounding
  100.  * application must deal with any cleanup that should happen even
  101.  * for error exit.
  102.  */
  103. METHODDEF(void)
  104. term_destination (j_compress_ptr cinfo)
  105. {
  106.   my_dest_ptr dest = (my_dest_ptr) cinfo->dest;
  107.   size_t datacount = OUTPUT_BUF_SIZE - dest->pub.free_in_buffer;
  108.   /* Write any data remaining in the buffer */
  109.   if (datacount > 0) {
  110.     if (JFWRITE(dest->outfile, dest->buffer, datacount) != datacount)
  111.       ERREXIT(cinfo, JERR_FILE_WRITE);
  112.   }
  113.   fflush(dest->outfile);
  114.   /* Make sure we wrote the output file OK */
  115.   if (ferror(dest->outfile))
  116.     ERREXIT(cinfo, JERR_FILE_WRITE);
  117. }
  118. /*
  119.  * Prepare for output to a stdio stream.
  120.  * The caller must have already opened the stream, and is responsible
  121.  * for closing it after finishing compression.
  122.  */
  123. GLOBAL(void)
  124. jpeg_stdio_dest (j_compress_ptr cinfo, FILE * outfile)
  125. {
  126.   my_dest_ptr dest;
  127.   /* The destination object is made permanent so that multiple JPEG images
  128.    * can be written to the same file without re-executing jpeg_stdio_dest.
  129.    * This makes it dangerous to use this manager and a different destination
  130.    * manager serially with the same JPEG object, because their private object
  131.    * sizes may be different.  Caveat programmer.
  132.    */
  133.   if (cinfo->dest == NULL) { /* first time for this JPEG object? */
  134.     cinfo->dest = (struct jpeg_destination_mgr *)
  135.       (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
  136.   SIZEOF(my_destination_mgr));
  137.   }
  138.   dest = (my_dest_ptr) cinfo->dest;
  139.   dest->pub.init_destination = init_destination;
  140.   dest->pub.empty_output_buffer = empty_output_buffer;
  141.   dest->pub.term_destination = term_destination;
  142.   dest->outfile = outfile;
  143. }