123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /*
- * Copyright (c) 2012, Mathieu Malaterre
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- */
- #include <assert.h>
- #include <string.h>
- #include <stdio.h>
- #include "opj_config.h"
- #include "openjpeg.h"
- #define J2K_CFMT 0
- void error_callback(const char *msg, void *v);
- void warning_callback(const char *msg, void *v);
- void info_callback(const char *msg, void *v);
- void error_callback(const char *msg, void *v) {
- (void)msg;
- (void)v;
- puts(msg);
- }
- void warning_callback(const char *msg, void *v) {
- (void)msg;
- (void)v;
- puts(msg);
- }
- void info_callback(const char *msg, void *v) {
- (void)msg;
- (void)v;
- puts(msg);
- }
- int main(int argc, char *argv[])
- {
- const char * v = opj_version();
- const OPJ_COLOR_SPACE color_space = OPJ_CLRSPC_GRAY;
- unsigned int numcomps = 1;
- unsigned int i;
- unsigned int image_width = 256;
- unsigned int image_height = 256;
- opj_cparameters_t parameters;
- unsigned int subsampling_dx = 0;
- unsigned int subsampling_dy = 0;
- opj_image_cmptparm_t cmptparm;
- opj_image_t *image;
- opj_codec_t* l_codec = 00;
- OPJ_BOOL bSuccess;
- opj_stream_t *l_stream = 00;
- (void)argc;
- (void)argv;
- opj_set_default_encoder_parameters(¶meters);
- parameters.cod_format = J2K_CFMT;
- puts(v);
- cmptparm.prec = 8;
- cmptparm.bpp = 8;
- cmptparm.sgnd = 0;
- cmptparm.dx = subsampling_dx;
- cmptparm.dy = subsampling_dy;
- cmptparm.w = image_width;
- cmptparm.h = image_height;
- image = opj_image_create(numcomps, &cmptparm, color_space);
- assert( image );
- for (i = 0; i < image_width * image_height; i++)
- {
- unsigned int compno;
- for(compno = 0; compno < numcomps; compno++)
- {
- image->comps[compno].data[i] = 0;
- }
- }
- /* catch events using our callbacks and give a local context */
- opj_set_info_handler(l_codec, info_callback,00);
- opj_set_warning_handler(l_codec, warning_callback,00);
- opj_set_error_handler(l_codec, error_callback,00);
- l_codec = opj_create_compress(OPJ_CODEC_J2K);
- opj_set_info_handler(l_codec, info_callback,00);
- opj_set_warning_handler(l_codec, warning_callback,00);
- opj_set_error_handler(l_codec, error_callback,00);
- opj_setup_encoder(l_codec, ¶meters, image);
- l_stream = opj_stream_create_default_file_stream("testempty1.j2k",OPJ_FALSE);
- assert(l_stream);
- bSuccess = opj_start_compress(l_codec,image,l_stream);
- if( !bSuccess )
- {
- opj_stream_destroy(l_stream);
- opj_destroy_codec(l_codec);
- opj_image_destroy(image);
- return 0;
- }
- assert( bSuccess );
- bSuccess = opj_encode(l_codec, l_stream);
- assert( bSuccess );
- bSuccess = opj_end_compress(l_codec, l_stream);
- assert( bSuccess );
- opj_stream_destroy(l_stream);
- opj_destroy_codec(l_codec);
- opj_image_destroy(image);
- puts( "end" );
- return 0;
- }
|