libvips/libvips/conversion/autorot.c

224 lines
5.3 KiB
C
Raw Normal View History

2014-10-19 11:35:10 +02:00
/* autorot
*
* 19/10/14
* - from jpegload
* 12/4/16
* - test and remove orientation from every ifd
2014-10-19 11:35:10 +02:00
*/
/*
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
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /*HAVE_CONFIG_H*/
#include <vips/intl.h>
#include <vips/vips.h>
#include "pconversion.h"
typedef struct _VipsAutorot {
VipsConversion parent_instance;
VipsImage *in;
2014-10-19 12:20:33 +02:00
VipsAngle angle;
2014-10-19 11:35:10 +02:00
} VipsAutorot;
typedef VipsConversionClass VipsAutorotClass;
G_DEFINE_TYPE( VipsAutorot, vips_autorot, VIPS_TYPE_CONVERSION );
static void *
vips_autorot_get_angle_sub( VipsImage *image,
const char *field, GValue *value, void *my_data )
{
VipsAngle *angle = (VipsAngle *) my_data;
const char *orientation;
if( vips_isprefix( "exif-", field ) &&
vips_ispostfix( "-Orientation", field ) &&
!vips_image_get_string( image, field, &orientation ) ) {
if( vips_isprefix( "6", orientation ) )
*angle = VIPS_ANGLE_D90;
else if( vips_isprefix( "8", orientation ) )
*angle = VIPS_ANGLE_D270;
else if( vips_isprefix( "3", orientation ) )
*angle = VIPS_ANGLE_D180;
else
*angle = VIPS_ANGLE_D0;
/* Other values do rotate + mirror, don't bother handling them
* though, how common can mirroring be.
*
* See:
*
* http://www.80sidea.com/archives/2316
*/
}
return( NULL );
}
2014-10-19 11:35:10 +02:00
/**
* vips_autorot_get_angle:
* @image: image to fetch orientation from
*
* Examine the metadata on @im and return the #VipsAngle to rotate by to turn
* the image upright.
*
* See also: vips_autorot().
*
* Returns: the #VipsAngle to rotate by to make the image upright.
*/
2014-10-19 11:35:10 +02:00
VipsAngle
vips_autorot_get_angle( VipsImage *image )
2014-10-19 11:35:10 +02:00
{
VipsAngle angle;
angle = VIPS_ANGLE_D0;
(void) vips_image_map( image, vips_autorot_get_angle_sub, &angle );
2014-10-19 11:35:10 +02:00
return( angle );
}
static void *
vips_autorot_remove_angle_sub( VipsImage *image,
const char *field, GValue *value, void *my_data )
{
if( vips_isprefix( "exif-", field ) &&
vips_ispostfix( "-Orientation", field ) )
(void) vips_image_remove( image, field );
return( NULL );
}
/**
* vips_autorot_remove_angle:
* @im: image to remove orientation from
*
* Remove any EXIF tag on @im which looks like orientation.
*
* See also: vips_autorot_get_angle().
*/
static void
vips_autorot_remove_angle( VipsImage *image )
{
(void) vips_image_map( image, vips_autorot_remove_angle_sub, NULL );
}
2014-10-19 11:35:10 +02:00
static int
vips_autorot_build( VipsObject *object )
{
VipsConversion *conversion = VIPS_CONVERSION( object );
VipsAutorot *autorot = (VipsAutorot *) object;
2014-10-19 17:37:41 +02:00
VipsImage **t = (VipsImage **) vips_object_local_array( object, 1 );
2014-10-19 11:35:10 +02:00
if( VIPS_OBJECT_CLASS( vips_autorot_parent_class )->build( object ) )
return( -1 );
2014-10-19 17:37:41 +02:00
g_object_set( object,
"angle", vips_autorot_get_angle( autorot->in ),
NULL );
if( vips_rot( autorot->in, &t[0], autorot->angle, NULL ) )
return( -1 );
vips_autorot_remove_angle( t[0] );
if( vips_image_write( t[0], conversion->out ) )
2014-10-19 11:35:10 +02:00
return( -1 );
return( 0 );
}
static void
vips_autorot_class_init( VipsAutorotClass *class )
{
GObjectClass *gobject_class = G_OBJECT_CLASS( class );
VipsObjectClass *vobject_class = VIPS_OBJECT_CLASS( class );
gobject_class->set_property = vips_object_set_property;
gobject_class->get_property = vips_object_get_property;
vobject_class->nickname = "autorot";
vobject_class->description = _( "autorotate image by exif tag" );
vobject_class->build = vips_autorot_build;
VIPS_ARG_IMAGE( class, "in", 1,
_( "Input" ),
_( "Input image" ),
VIPS_ARGUMENT_REQUIRED_INPUT,
G_STRUCT_OFFSET( VipsAutorot, in ) );
2014-10-19 12:20:33 +02:00
VIPS_ARG_ENUM( class, "angle", 6,
_( "Angle" ),
_( "Angle image was rotated by" ),
VIPS_ARGUMENT_OPTIONAL_OUTPUT,
G_STRUCT_OFFSET( VipsAutorot, angle ),
VIPS_TYPE_ANGLE, VIPS_ANGLE_D0 );
2014-10-19 11:35:10 +02:00
}
static void
vips_autorot_init( VipsAutorot *autorot )
{
2014-10-19 12:20:33 +02:00
autorot->angle = VIPS_ANGLE_D0;
2014-10-19 11:35:10 +02:00
}
/**
* vips_autorot:
* @in: input image
* @out: output image
* @...: %NULL-terminated list of optional named arguments
*
2014-10-19 12:20:33 +02:00
* Optional arguments:
*
* @angle: output #VipsAngle the image was rotated by
*
* Look at the exif tags and rotate the image to make it upright. The
* orientation tag is removed from @out to prevent accidental double rotation.
*
* Read @angle to find the amount the image was rotated by.
2014-10-19 11:35:10 +02:00
*
* See also: vips_rot().
*
* Returns: 0 on success, -1 on error
*/
int
vips_autorot( VipsImage *in, VipsImage **out, ... )
{
va_list ap;
int result;
va_start( ap, out );
result = vips_call_split( "autorot", ap, in, out );
va_end( ap );
return( result );
}