Skip to content
Snippets Groups Projects
Commit 31d7560e authored by felmer's avatar felmer
Browse files

SSDM-782: bug in Hdf5ThumbnailGenerator fixed: In case of original RGB images...

SSDM-782: bug in Hdf5ThumbnailGenerator fixed: In case of original RGB images only thumbnails for one color were correct.

SVN: 32427
parent 4c485740
No related branches found
No related tags found
No related merge requests found
...@@ -434,9 +434,7 @@ public class Hdf5ThumbnailGenerator implements IHDF5WriterClient ...@@ -434,9 +434,7 @@ public class Hdf5ThumbnailGenerator implements IHDF5WriterClient
private List<ThumbnailData> generateThumbnailInternally(ImageFileInfo imageFileInfo, private List<ThumbnailData> generateThumbnailInternally(ImageFileInfo imageFileInfo,
String imageIdOrNull, ByteArrayOutputStream bufferOutputStream) throws IOException String imageIdOrNull, ByteArrayOutputStream bufferOutputStream) throws IOException
{ {
BufferedImage image = BufferedImage image = loadUnchangedImage(imageFileInfo.getImageRelativePath(), imageIdOrNull);
loadUnchangedImage(imageFileInfo.getImageRelativePath(), imageIdOrNull);
int widht = thumbnailsStorageFormat.getMaxWidth(); int widht = thumbnailsStorageFormat.getMaxWidth();
int height = thumbnailsStorageFormat.getMaxHeight(); int height = thumbnailsStorageFormat.getMaxHeight();
if (thumbnailsStorageFormat.getZoomLevel() != null) if (thumbnailsStorageFormat.getZoomLevel() != null)
...@@ -445,17 +443,15 @@ public class Hdf5ThumbnailGenerator implements IHDF5WriterClient ...@@ -445,17 +443,15 @@ public class Hdf5ThumbnailGenerator implements IHDF5WriterClient
height = (int) Math.round(thumbnailsStorageFormat.getZoomLevel() * image.getHeight()); height = (int) Math.round(thumbnailsStorageFormat.getZoomLevel() * image.getHeight());
} }
BufferedImage thumbnail = boolean highQuality = thumbnailsStorageFormat.isHighQuality();
ImageUtil.rescale(image, widht, height, false, BufferedImage rescaledImage = ImageUtil.rescale(image, widht, height, false, highQuality);
thumbnailsStorageFormat.isHighQuality());
final List<ThumbnailData> thumbnails = new ArrayList<ThumbnailData>(); final List<ThumbnailData> thumbnails = new ArrayList<ThumbnailData>();
for (String channelCode : getChannelsToProcess(imageFileInfo.getChannelCode())) for (String channelCode : getChannelsToProcess(imageFileInfo.getChannelCode()))
{ {
thumbnail = ColorComponent colorComponent = channelColors.get(channelCode);
applyTransformationsChain(thumbnail, channelCode, BufferedImage thumbnail = applyTransformationsChain(rescaledImage, channelCode, colorComponent);
channelColors.get(channelCode)); bufferOutputStream.reset();
thumbnailsStorageFormat.getFileFormat().writeImage(thumbnail, bufferOutputStream); thumbnailsStorageFormat.getFileFormat().writeImage(thumbnail, bufferOutputStream);
thumbnails.add(new ThumbnailData(bufferOutputStream.toByteArray(), thumbnails.add(new ThumbnailData(bufferOutputStream.toByteArray(),
thumbnail.getWidth(), thumbnail.getHeight(), thumbnail.getColorModel() thumbnail.getWidth(), thumbnail.getHeight(), thumbnail.getColorModel()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment