2005-12-02 14:34:15 +01:00
|
|
|
/*
|
2017-05-15 12:21:30 +02:00
|
|
|
* The copyright in this software is being made available under the 2-clauses
|
|
|
|
* BSD License, included below. This software may be subject to other third
|
2014-04-03 17:30:57 +02:00
|
|
|
* party and contributor rights, including patent rights, and no such rights
|
|
|
|
* are granted under this license.
|
|
|
|
*
|
2011-01-29 15:15:26 +01:00
|
|
|
* Copyright (c) 2005, Herve Drolon, FreeImage Team
|
2005-12-02 14:34:15 +01:00
|
|
|
* 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.
|
|
|
|
*/
|
2017-07-30 19:46:52 +02:00
|
|
|
#ifndef OPJ_IMAGE_H
|
|
|
|
#define OPJ_IMAGE_H
|
2005-12-02 14:34:15 +01:00
|
|
|
/**
|
|
|
|
@file image.h
|
|
|
|
@brief Implementation of operations on images (IMAGE)
|
|
|
|
|
|
|
|
The functions in IMAGE.C have for goal to realize operations on images.
|
|
|
|
*/
|
|
|
|
|
2011-09-19 15:04:04 +02:00
|
|
|
struct opj_image;
|
2012-10-26 09:52:27 +02:00
|
|
|
struct opj_cp;
|
2011-09-19 15:04:04 +02:00
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
/** @defgroup IMAGE IMAGE - Implementation of operations on images */
|
|
|
|
/*@{*/
|
|
|
|
|
|
|
|
/**
|
2011-10-05 18:27:16 +02:00
|
|
|
* Create an empty image
|
|
|
|
*
|
|
|
|
* @return returns an empty image if successful, returns NULL otherwise
|
|
|
|
*/
|
2007-08-21 14:02:23 +02:00
|
|
|
opj_image_t* opj_image_create0(void);
|
2005-12-02 14:34:15 +01:00
|
|
|
|
2011-09-19 15:30:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the components characteristics of the image from the coding parameters.
|
2011-09-19 15:04:04 +02:00
|
|
|
*
|
2017-05-15 12:21:30 +02:00
|
|
|
* @param p_image_header the image header to update.
|
|
|
|
* @param p_cp the coding parameters from which to update the image.
|
2011-09-19 15:04:04 +02:00
|
|
|
*/
|
2017-05-15 12:21:30 +02:00
|
|
|
void opj_image_comp_header_update(opj_image_t * p_image,
|
|
|
|
const struct opj_cp* p_cp);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
2017-05-15 12:21:30 +02:00
|
|
|
void opj_copy_image_header(const opj_image_t* p_image_src,
|
|
|
|
opj_image_t* p_image_dest);
|
2011-10-21 18:38:08 +02:00
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
/*@}*/
|
|
|
|
|
2017-07-30 19:46:52 +02:00
|
|
|
#endif /* OPJ_IMAGE_H */
|
2005-12-02 14:34:15 +01:00
|
|
|
|