From 5b90e365595c12ba202f5e1956ee005d36b4ad4b Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Tue, 10 Feb 2015 14:44:35 +0000 Subject: [PATCH] notes --- ChangeLog | 1 + TODO | 7 +++++-- libvips/foreign/jpegload.c | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index c344cefb..e39cf239 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ - added vips_image_memory(), an alias for vips_image_new_memory() - improvements to configure for python - remove --disable-cxx configure flag +- python imageize preserves interpretation 30/12/14 started 7.42.2 - C++ required output params were broken, thanks Lovell diff --git a/TODO b/TODO index 9b4e6d11..65241e87 100644 --- a/TODO +++ b/TODO @@ -1,11 +1,14 @@ -- should cplusplus and ruby imageize preserve interpretation too? - - why can't we do im = Vips.Image.new_from_file(sys.argv[1], access = "sequential") ValueError: invalid literal for int() with base 10: 'sequential' + no idea ... this works fine: + + im.embed(10, 10, 100, 100, extend = "copy") + + - msb in colour should not touch alpha channel ... or should it? should converting RGBA from 8 to 16-bit touch alpha too? diff --git a/libvips/foreign/jpegload.c b/libvips/foreign/jpegload.c index bf5e5bdc..cc8cee83 100644 --- a/libvips/foreign/jpegload.c +++ b/libvips/foreign/jpegload.c @@ -153,7 +153,7 @@ vips_foreign_load_jpeg_class_init( VipsForeignLoadJpegClass *class ) VIPS_ARG_BOOL( class, "autorotate", 12, _( "Autorotate" ), - _( "Automatically rotate image using exif orientation" ), + _( "Rotate image using exif orientation" ), VIPS_ARGUMENT_OPTIONAL_INPUT, G_STRUCT_OFFSET( VipsForeignLoadJpeg, autorotate ), FALSE );