tell buffer and target savers the file format Currently, buffer and target savers are not told the format they should write. This is usually OK (the JPEG saver already knows it should write JPEG), but some savers can write several formats, and these currently need an extra parameter. For example: ```ruby buf = x.write_to_buffer ".bmp", format: "bmp" ``` The first ".bmp" gets libvips to pick magicksave, the second `format:` param is necessary to tell magicksave to write BMP. This patch adds stub subclasses so that the savers know the exact format. It also improves PPM save.
86 lines
2.4 KiB
C
86 lines
2.4 KiB
C
/* libheif as a dynamically loadable module
|
|
*
|
|
* 14/2/21 kleisauke
|
|
* - initial
|
|
*/
|
|
|
|
/*
|
|
|
|
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., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301 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 <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <vips/vips.h>
|
|
#include <vips/debug.h>
|
|
#include <vips/internal.h>
|
|
|
|
#if (defined(HAVE_HEIF_DECODER) || defined(HAVE_HEIF_ENCODER)) && defined(HEIF_MODULE)
|
|
|
|
/* This is called on module load.
|
|
*/
|
|
G_MODULE_EXPORT const gchar *
|
|
g_module_check_init( GModule *module )
|
|
{
|
|
#ifdef DEBUG
|
|
printf( "vips_heif: module init\n" );
|
|
#endif /*DEBUG*/
|
|
|
|
extern GType vips_foreign_load_heif_file_get_type( void );
|
|
extern GType vips_foreign_load_heif_buffer_get_type( void );
|
|
extern GType vips_foreign_load_heif_source_get_type( void );
|
|
extern GType vips_foreign_save_heif_file_get_type( void );
|
|
extern GType vips_foreign_save_heif_buffer_get_type( void );
|
|
extern GType vips_foreign_save_heif_target_get_type( void );
|
|
extern GType vips_foreign_save_avif_target_get_type( void );
|
|
|
|
#ifdef HAVE_HEIF_DECODER
|
|
vips_foreign_load_heif_file_get_type();
|
|
vips_foreign_load_heif_buffer_get_type();
|
|
vips_foreign_load_heif_source_get_type();
|
|
#endif /*HAVE_HEIF_DECODER*/
|
|
|
|
#ifdef HAVE_HEIF_ENCODER
|
|
vips_foreign_save_heif_file_get_type();
|
|
vips_foreign_save_heif_buffer_get_type();
|
|
vips_foreign_save_heif_target_get_type();
|
|
vips_foreign_save_avif_target_get_type();
|
|
#endif /*HAVE_HEIF_ENCODER*/
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
#endif /*(defined(HAVE_HEIF_DECODER) || defined(HAVE_HEIF_ENCODER)) && defined(HEIF_MODULE)*/
|