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

图形图象

开发平台:

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.  * jcapimin.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 application interface code for the compression half
  28.  * of the JPEG library.  These are the "minimum" API routines that may be
  29.  * needed in either the normal full-compression case or the transcoding-only
  30.  * case.
  31.  *
  32.  * Most of the routines intended to be called directly by an application
  33.  * are in this file or in jcapistd.c.  But also see jcparam.c for
  34.  * parameter-setup helper routines, jcomapi.c for routines shared by
  35.  * compression and decompression, and jctrans.c for the transcoding case.
  36.  */
  37. #define JPEG_INTERNALS
  38. #include "jinclude.h"
  39. #include "jpeglib.h"
  40. /*
  41.  * Initialization of a JPEG compression object.
  42.  * The error manager must already be set up (in case memory manager fails).
  43.  */
  44. GLOBAL(void)
  45. jpeg_CreateCompress (j_compress_ptr cinfo, int version, size_t structsize)
  46. {
  47.   int i;
  48.   /* Guard against version mismatches between library and caller. */
  49.   cinfo->mem = NULL; /* so jpeg_destroy knows mem mgr not called */
  50.   if (version != JPEG_LIB_VERSION)
  51.     ERREXIT2(cinfo, JERR_BAD_LIB_VERSION, JPEG_LIB_VERSION, version);
  52.   if (structsize != SIZEOF(struct jpeg_compress_struct))
  53.     ERREXIT2(cinfo, JERR_BAD_STRUCT_SIZE, 
  54.      (int) SIZEOF(struct jpeg_compress_struct), (int) structsize);
  55.   /* For debugging purposes, zero the whole master structure.
  56.    * But error manager pointer is already there, so save and restore it.
  57.    */
  58.   {
  59.     struct jpeg_error_mgr * err = cinfo->err;
  60.     MEMZERO(cinfo, SIZEOF(struct jpeg_compress_struct));
  61.     cinfo->err = err;
  62.   }
  63.   cinfo->is_decompressor = FALSE;
  64.   /* Initialize a memory manager instance for this object */
  65.   jinit_memory_mgr((j_common_ptr) cinfo);
  66.   /* Zero out pointers to permanent structures. */
  67.   cinfo->progress = NULL;
  68.   cinfo->dest = NULL;
  69.   cinfo->comp_info = NULL;
  70.   for (i = 0; i < NUM_QUANT_TBLS; i++)
  71.     cinfo->quant_tbl_ptrs[i] = NULL;
  72.   for (i = 0; i < NUM_HUFF_TBLS; i++) {
  73.     cinfo->dc_huff_tbl_ptrs[i] = NULL;
  74.     cinfo->ac_huff_tbl_ptrs[i] = NULL;
  75.   }
  76.   cinfo->input_gamma = 1.0; /* in case application forgets */
  77.   /* OK, I'm ready */
  78.   cinfo->global_state = CSTATE_START;
  79. }
  80. /*
  81.  * Destruction of a JPEG compression object
  82.  */
  83. GLOBAL(void)
  84. jpeg_destroy_compress (j_compress_ptr cinfo)
  85. {
  86.   jpeg_destroy((j_common_ptr) cinfo); /* use common routine */
  87. }
  88. /*
  89.  * Abort processing of a JPEG compression operation,
  90.  * but don't destroy the object itself.
  91.  */
  92. GLOBAL(void)
  93. jpeg_abort_compress (j_compress_ptr cinfo)
  94. {
  95.   jpeg_abort((j_common_ptr) cinfo); /* use common routine */
  96. }
  97. /*
  98.  * Forcibly suppress or un-suppress all quantization and Huffman tables.
  99.  * Marks all currently defined tables as already written (if suppress)
  100.  * or not written (if !suppress).  This will control whether they get emitted
  101.  * by a subsequent jpeg_start_compress call.
  102.  *
  103.  * This routine is exported for use by applications that want to produce
  104.  * abbreviated JPEG datastreams.  It logically belongs in jcparam.c, but
  105.  * since it is called by jpeg_start_compress, we put it here --- otherwise
  106.  * jcparam.o would be linked whether the application used it or not.
  107.  */
  108. GLOBAL(void)
  109. jpeg_suppress_tables (j_compress_ptr cinfo, boolean suppress)
  110. {
  111.   int i;
  112.   JQUANT_TBL * qtbl;
  113.   JHUFF_TBL * htbl;
  114.   for (i = 0; i < NUM_QUANT_TBLS; i++) {
  115.     if ((qtbl = cinfo->quant_tbl_ptrs[i]) != NULL)
  116.       qtbl->sent_table = suppress;
  117.   }
  118.   for (i = 0; i < NUM_HUFF_TBLS; i++) {
  119.     if ((htbl = cinfo->dc_huff_tbl_ptrs[i]) != NULL)
  120.       htbl->sent_table = suppress;
  121.     if ((htbl = cinfo->ac_huff_tbl_ptrs[i]) != NULL)
  122.       htbl->sent_table = suppress;
  123.   }
  124. }
  125. /*
  126.  * Finish JPEG compression.
  127.  *
  128.  * If a multipass operating mode was selected, this may do a great deal of
  129.  * work including most of the actual output.
  130.  */
  131. GLOBAL(void)
  132. jpeg_finish_compress (j_compress_ptr cinfo)
  133. {
  134.   JDIMENSION iMCU_row;
  135.   if (cinfo->global_state == CSTATE_SCANNING ||
  136.       cinfo->global_state == CSTATE_RAW_OK) {
  137.     /* Terminate first pass */
  138.     if (cinfo->next_scanline < cinfo->image_height)
  139.       ERREXIT(cinfo, JERR_TOO_LITTLE_DATA);
  140.     (*cinfo->master->finish_pass) (cinfo);
  141.   } else if (cinfo->global_state != CSTATE_WRCOEFS)
  142.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  143.   /* Perform any remaining passes */
  144.   while (! cinfo->master->is_last_pass) {
  145.     (*cinfo->master->prepare_for_pass) (cinfo);
  146.     for (iMCU_row = 0; iMCU_row < cinfo->total_iMCU_rows; iMCU_row++) {
  147.       if (cinfo->progress != NULL) {
  148. cinfo->progress->pass_counter = (long) iMCU_row;
  149. cinfo->progress->pass_limit = (long) cinfo->total_iMCU_rows;
  150. (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
  151.       }
  152.       /* We bypass the main controller and invoke coef controller directly;
  153.        * all work is being done from the coefficient buffer.
  154.        */
  155.       if (! (*cinfo->coef->compress_data) (cinfo, (JSAMPIMAGE) NULL))
  156. ERREXIT(cinfo, JERR_CANT_SUSPEND);
  157.     }
  158.     (*cinfo->master->finish_pass) (cinfo);
  159.   }
  160.   /* Write EOI, do final cleanup */
  161.   (*cinfo->marker->write_file_trailer) (cinfo);
  162.   (*cinfo->dest->term_destination) (cinfo);
  163.   /* We can use jpeg_abort to release memory and reset global_state */
  164.   jpeg_abort((j_common_ptr) cinfo);
  165. }
  166. /*
  167.  * Write a special marker.
  168.  * This is only recommended for writing COM or APPn markers.
  169.  * Must be called after jpeg_start_compress() and before
  170.  * first call to jpeg_write_scanlines() or jpeg_write_raw_data().
  171.  */
  172. GLOBAL(void)
  173. jpeg_write_marker (j_compress_ptr cinfo, int marker,
  174.    const JOCTET *dataptr, unsigned int datalen)
  175. {
  176.   if (cinfo->next_scanline != 0 ||
  177.       (cinfo->global_state != CSTATE_SCANNING &&
  178.        cinfo->global_state != CSTATE_RAW_OK &&
  179.        cinfo->global_state != CSTATE_WRCOEFS))
  180.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  181.   (*cinfo->marker->write_any_marker) (cinfo, marker, dataptr, datalen);
  182. }
  183. /*
  184.  * Alternate compression function: just write an abbreviated table file.
  185.  * Before calling this, all parameters and a data destination must be set up.
  186.  *
  187.  * To produce a pair of files containing abbreviated tables and abbreviated
  188.  * image data, one would proceed as follows:
  189.  *
  190.  * initialize JPEG object
  191.  * set JPEG parameters
  192.  * set destination to table file
  193.  * jpeg_write_tables(cinfo);
  194.  * set destination to image file
  195.  * jpeg_start_compress(cinfo, FALSE);
  196.  * write data...
  197.  * jpeg_finish_compress(cinfo);
  198.  *
  199.  * jpeg_write_tables has the side effect of marking all tables written
  200.  * (same as jpeg_suppress_tables(..., TRUE)).  Thus a subsequent start_compress
  201.  * will not re-emit the tables unless it is passed write_all_tables=TRUE.
  202.  */
  203. GLOBAL(void)
  204. jpeg_write_tables (j_compress_ptr cinfo)
  205. {
  206.   if (cinfo->global_state != CSTATE_START)
  207.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  208.   /* (Re)initialize error mgr and destination modules */
  209.   (*cinfo->err->reset_error_mgr) ((j_common_ptr) cinfo);
  210.   (*cinfo->dest->init_destination) (cinfo);
  211.   /* Initialize the marker writer ... bit of a crock to do it here. */
  212.   jinit_marker_writer(cinfo);
  213.   /* Write them tables! */
  214.   (*cinfo->marker->write_tables_only) (cinfo);
  215.   /* And clean up. */
  216.   (*cinfo->dest->term_destination) (cinfo);
  217.   /* We can use jpeg_abort to release memory. */
  218.   jpeg_abort((j_common_ptr) cinfo);
  219. }