2332e0bfc3
the vips7 loaders were a thin layer over the new VipsForeign system however! VipsForeign does various "useful" things, like open via disc, and this resulted in stuff like vips im_jpeg2vips huge.jpg x.v decompressing to a temp file before copying to x.v im_jpeg2vips() and friends now call the low-level loaders directly and avoid the extra mechanisms in VipsForeign "nip2 huge.jpg" was loading twice as well, for the same reason
94 lines
2.2 KiB
C
94 lines
2.2 KiB
C
/* Read a Analyze file. Old-style header (so called 7.5 format).
|
|
*
|
|
* 14/12/11
|
|
* - just a compat stub now
|
|
*/
|
|
|
|
/*
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
/*
|
|
#define DEBUG
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif /*HAVE_CONFIG_H*/
|
|
#include <vips/intl.h>
|
|
|
|
#include <vips/vips.h>
|
|
|
|
#include "../foreign/dbh.h"
|
|
#include "../foreign/analyze2vips.h"
|
|
|
|
static VipsFormatFlags
|
|
analyze_flags( const char *filename )
|
|
{
|
|
return( vips_foreign_flags( "analyzeload", filename ) );
|
|
}
|
|
|
|
static int
|
|
isanalyze( const char *filename )
|
|
{
|
|
return( vips_foreign_is_a( "analyzeload", filename ) );
|
|
}
|
|
|
|
int
|
|
im_analyze2vips( const char *filename, IMAGE *out )
|
|
{
|
|
return( vips__analyze_read( filename, out ) );
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
static const char *analyze_suffs[] = { ".img", ".hdr", NULL };
|
|
|
|
typedef VipsFormat VipsFormatAnalyze;
|
|
typedef VipsFormatClass VipsFormatAnalyzeClass;
|
|
|
|
static void
|
|
vips_format_analyze_class_init( VipsFormatAnalyzeClass *class )
|
|
{
|
|
VipsObjectClass *object_class = (VipsObjectClass *) class;
|
|
VipsFormatClass *format_class = (VipsFormatClass *) class;
|
|
|
|
object_class->nickname = "analyze";
|
|
object_class->description = _( "Analyze 6.0" );
|
|
|
|
format_class->is_a = isanalyze;
|
|
format_class->load = im_analyze2vips;
|
|
format_class->get_flags = analyze_flags;
|
|
format_class->suffs = analyze_suffs;
|
|
}
|
|
|
|
static void
|
|
vips_format_analyze_init( VipsFormatAnalyze *object )
|
|
{
|
|
}
|
|
|
|
G_DEFINE_TYPE( VipsFormatAnalyze, vips_format_analyze, VIPS_TYPE_FORMAT );
|
|
|