added header.h

This commit is contained in:
John Cupitt 2009-10-01 18:05:55 +00:00
parent f94146df7c
commit c696bdc1ec
7 changed files with 71 additions and 9 deletions

View File

@ -18,6 +18,7 @@
<chapter>
<title>Core VIPS API</title>
<xi:include href="xml/image.xml"/>
<xi:include href="xml/header.xml"/>
<xi:include href="xml/meta.xml"/>
<xi:include href="xml/buf.xml"/>
</chapter>

View File

@ -6,6 +6,7 @@ pkginclude_HEADERS = \
debug.h \
dispatch.h \
format.h \
header.h \
fmask.h \
mosaic.h \
interpolate.h \

View File

@ -0,0 +1,52 @@
/* boolean.h
*
* 20/9/09
* - from proto.h
*/
/*
This file is part of VIPS.
VIPS is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
*/
#ifndef IM_HEADER_H
#define IM_HEADER_H
#ifdef __cplusplus
extern "C" {
#endif /*__cplusplus*/
int im_header_int( IMAGE *im, const char *field, int *out );
int im_header_double( IMAGE *im, const char *field, double *out );
int im_header_string( IMAGE *im, const char *field, char **out );
GType im_header_get_typeof( IMAGE *im, const char *field );
int im_header_get( IMAGE *im, const char *field, GValue *value_copy );
typedef void *(*im_header_map_fn)( IMAGE *, const char *, GValue *, void * );
void *im_header_map( IMAGE *im, im_header_map_fn fn, void *a );
#ifdef __cplusplus
}
#endif /*__cplusplus*/
#endif /*IM_HEADER_H*/

View File

@ -76,14 +76,6 @@ void im_progress_set( int progress );
int im_debugim( IMAGE * );
int im_printlines( IMAGE * );
int im_header_int( IMAGE *im, const char *field, int *out );
int im_header_double( IMAGE *im, const char *field, double *out );
int im_header_string( IMAGE *im, const char *field, char **out );
GType im_header_get_typeof( IMAGE *im, const char *field );
int im_header_get( IMAGE *im, const char *field, GValue *value_copy );
typedef void *(*im_header_map_fn)( IMAGE *, const char *, GValue *, void * );
void *im_header_map( IMAGE *im, im_header_map_fn fn, void *a );
const char *im_version_string( void );
int im_version( int flag );
const char *im_guess_prefix( const char *, const char * );

View File

@ -133,7 +133,9 @@ typedef struct im__DOUBLEMASK {
#include <vips/interpolate.h>
#include <vips/semaphore.h>
#include <vips/threadgroup.h>
#include <vips/meta.h>
#include <vips/header.h>
#include <vips/proto.h>
#include <vips/arithmetic.h>

View File

@ -17,7 +17,6 @@ libiofuncs_la_SOURCES = \
im_debugim.c \
im_demand_hint.c \
im_generate.c \
im_header.c \
im_histlin.c \
im_image.c \
im_init.c \
@ -47,6 +46,7 @@ libiofuncs_la_SOURCES = \
memory.c \
package.c \
predicate.c \
header.c \
region.c \
rect.c \
semaphore.c \

View File

@ -15,6 +15,9 @@
* 29/8/09
* - im_header_get_type() renamed as im_header_get_typeof() to prevent
* confusion with GObject-style type definers
* 1/10/09
* - rename as header.c
* - gtkdoc comments
*/
/*
@ -59,6 +62,17 @@
#include <dmalloc.h>
#endif /*WITH_DMALLOC*/
/**
* SECTION: header
* @short_description: get, set and walk image headers
* @stability: Stable
* @see_also: meta
* @include: vips/vips.h
*
* These functions let you get at image header data (including metadata) in a
* uniform way.
*/
/* Name, offset pair.
*/
typedef struct _HeaderField {