Permalink
Commits on Jan 25, 2017
Commits on Jul 6, 2016
  1. Add GitHub issue template

    bgilbert committed Jul 6, 2016
Commits on Jun 12, 2016
  1. Update for release

    bgilbert committed Jun 12, 2016
  2. Update copyrights

    bgilbert committed Jun 12, 2016
Commits on Jun 11, 2016
Commits on Jun 10, 2016
  1. tests: Disable large-read test to avoid consuming too much RAM

    There's no good way to conditionalize on the amount of system RAM
    using only the stdlib.
    bgilbert committed Jun 10, 2016
  2. tests: Skip large-read test with extension module on PIL

    PIL.Image.frombuffer() raises a ValueError, "buffer has negative size".
    PIL is ancient and large reads are unusual, so this isn't worth fixing.
    bgilbert committed Jun 10, 2016
  3. tests: Skip large-read tests on 32-bit Python

    They would fail with OverflowError.
    bgilbert committed Jun 10, 2016
  4. Fix 2+ GB reads --without-performance

    PIL.Image.frombuffer() raises OverflowError on buffers >= 2 GB when
    mapping color channels (python-pillow/Pillow#1475).  Work around this by
    loading large buffers in smaller chunks and pasting them into the result
    image.
    
    Fixes #17.
    bgilbert committed Jun 10, 2016
Commits on Jun 5, 2016
Commits on May 25, 2016
  1. ImageSlide: Close underlying PIL.Image if we opened it ourselves

    Fixes "unclosed file" ResourceWarnings.
    bgilbert committed May 25, 2016
  2. Fix ResourceWarning in ImageSlide.detect_format()

    Explicitly close the PIL.Image to avoid an "unclosed file" warning.
    bgilbert committed May 25, 2016
  3. tests: Explicitly close handles after use

    Fixes some "unclosed file" ResourceWarnings on Python 3.
    bgilbert committed May 25, 2016
  4. Add tests

    bgilbert committed May 25, 2016
Commits on May 21, 2016
  1. deepzoom: Change default tile size to 254 pixels

    For best viewer performance, the total tile size including overlaps
    should be a power of 2:
    
        jcupitt/libvips#359 (comment)
        jcupitt/libvips#359 (comment)
        jcupitt/libvips#359 (comment)
    bgilbert committed May 21, 2016
  2. examples/deepzoom: Update jQuery to 2.2.4

    Internet Explorer < 9 is EOL, so we don't need to stay with jQuery 1.x
    anymore.
    bgilbert committed May 21, 2016
  3. Fix fallback _load_image() with Pillow 3.x

    Fixes Pillow exception on image read when we're installed
    --without-performance:
    
        Exception: tostring() has been removed. Please call tobytes() instead.
    
    Found by @andrewmfiorillo.
    bgilbert committed May 21, 2016
Commits on May 10, 2016
Commits on Oct 18, 2015
Commits on Oct 4, 2015
Commits on Apr 20, 2015
  1. Update for release

    bgilbert committed Apr 20, 2015
Commits on Apr 2, 2015
  1. README: Add Ventana TIFF

    bgilbert committed Apr 2, 2015
Commits on Mar 8, 2015
  1. examples/deepzoom: Disable pinch scaling of multipane view

    If we allow pinch zoom both within OpenSeadragon and of the entire page,
    the nested panning/zooming makes it too easy to get lost.
    bgilbert committed Mar 8, 2015
Commits on Mar 2, 2015
Commits on Feb 11, 2015
Commits on Jan 30, 2015
  1. examples/deepzoom: Show scale bar when MPP is known

    <meta charset="utf-8"> ensures the "micro" symbol renders correctly in
    viewers written by deepzoom_tile.py.
    bgilbert committed Jan 30, 2015