2014-10-27 14:41:44 +01:00
|
|
|
/*
|
|
|
|
* compile with:
|
|
|
|
*
|
2015-01-06 12:51:53 +01:00
|
|
|
* g++ -g -Wall invert.cpp `pkg-config vips-cpp --cflags --libs`
|
2014-10-27 14:41:44 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-10-27 15:17:33 +01:00
|
|
|
#define DEBUG
|
|
|
|
|
2014-10-27 14:41:44 +01:00
|
|
|
#include <vips/vips8>
|
|
|
|
|
2015-01-06 12:51:53 +01:00
|
|
|
using namespace vips;
|
2014-10-27 14:41:44 +01:00
|
|
|
|
|
|
|
int
|
|
|
|
main( int argc, char **argv )
|
|
|
|
{
|
|
|
|
if( vips_init( argv[0] ) )
|
|
|
|
vips_error_exit( NULL );
|
|
|
|
|
|
|
|
printf( "these should match if VImage is compile-time-only\n" );
|
|
|
|
printf( "sizeof( VipsImage *) = %zd\n", sizeof( VipsImage *) );
|
|
|
|
printf( "sizeof( VImage ) = %zd\n", sizeof( VImage ) );
|
|
|
|
|
2014-10-27 15:17:33 +01:00
|
|
|
VImage in = VImage::new_from_file( argv[1],
|
2018-06-11 16:24:11 +02:00
|
|
|
VImage::option()->set( "access", VIPS_ACCESS_SEQUENTIAL ) );
|
2014-10-27 15:17:33 +01:00
|
|
|
|
2014-10-27 14:41:44 +01:00
|
|
|
VImage out;
|
|
|
|
|
|
|
|
out = in.invert();
|
|
|
|
|
|
|
|
out.write_to_file( argv[2] );
|
|
|
|
|
|
|
|
vips_shutdown();
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|