This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a change to branch geoapi-4.0 in repository https://gitbox.apache.org/repos/asf/sis.git
from 1b0067787b Remove the `horizontal` boolean argument in `ShapeUtilities.parabolicControlPoint(…)`. It was never used. new 69eedf135e Move three `ImageLayout` constants to the classes where they are used. Opportunistic renaming of a field for clarity and rewording in Javadoc. This is in preparation for moving `ImageLayout` to public API. new cc2e967908 Retrofit user-provided arguments as `ImageLayout` properties: - The `allowPartialTiles` argument given to `ImageLayout` methods. - The `ImageProcessor.autoTileSize` field. new e0d5eb16e4 Move `ImageLayout` to public API. The intend is to use it as a replacement for `SampleModel` and `ColorModel` arguments in `ImageProcessor`. new 226c9c5706 Deprecate `ImageProcessor.Resizing`, replaced by `ImageLayout`. new 49945796f4 Retrofit the `minTile` property of two `ImageLayout` subclasses into `ImageLayout` directly. new b9f98ce7e1 Add `SampleModel` and `ColorModel` properties into `ImageLayout` in replacement for optional arguments given to image processor. The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../org/apache/sis/coverage/privy/ImageLayout.java | 460 -------------- .../apache/sis/coverage/privy/RasterFactory.java | 2 +- .../org/apache/sis/image/BandAggregateImage.java | 2 +- .../org/apache/sis/image/BandAggregateLayout.java | 81 +-- .../apache/sis/image/BandedSampleConverter.java | 1 - .../main/org/apache/sis/image/ImageCombiner.java | 1 - .../main/org/apache/sis/image/ImageLayout.java | 679 +++++++++++++++++++++ .../main/org/apache/sis/image/ImageOverlay.java | 3 +- .../main/org/apache/sis/image/ImageProcessor.java | 137 +++-- .../main/org/apache/sis/image/Transferer.java | 1 - .../main/org/apache/sis/image/Visualization.java | 5 +- .../sis/image/BandedSampleConverterTest.java | 1 - .../{coverage/privy => image}/ImageLayoutTest.java | 14 +- .../org/apache/sis/image/ResampledImageTest.java | 1 - .../org/apache/sis/map/coverage/RenderingData.java | 9 +- .../storage/geotiff/writer/ReformattedImage.java | 4 +- .../org/apache/sis/gui/coverage/GridTileCache.java | 11 +- .../org/apache/sis/storage/gdal/TiledResource.java | 14 +- 18 files changed, 811 insertions(+), 615 deletions(-) delete mode 100644 endorsed/src/org.apache.sis.feature/main/org/apache/sis/coverage/privy/ImageLayout.java create mode 100644 endorsed/src/org.apache.sis.feature/main/org/apache/sis/image/ImageLayout.java rename endorsed/src/org.apache.sis.feature/test/org/apache/sis/{coverage/privy => image}/ImageLayoutTest.java (79%)