This commit is contained in:
John Cupitt 2015-02-10 14:44:35 +00:00
parent 640477dc62
commit 5b90e36559
3 changed files with 7 additions and 3 deletions

View File

@ -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

7
TODO
View File

@ -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?

View File

@ -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 );