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

LMS-2498 Correct usage of PngWriter. Fast image writer again used in places...

LMS-2498 Correct usage of PngWriter. Fast image writer again used in places out-commented in r22740.

SVN: 22890
parent 683ba156
No related branches found
No related tags found
No related merge requests found
...@@ -39,6 +39,8 @@ import javax.imageio.ImageIO; ...@@ -39,6 +39,8 @@ import javax.imageio.ImageIO;
import org.apache.commons.io.FilenameUtils; import org.apache.commons.io.FilenameUtils;
import ar.com.hjg.pngj.ImageInfo; import ar.com.hjg.pngj.ImageInfo;
import ar.com.hjg.pngj.ImageLine;
import ar.com.hjg.pngj.ImageLineHelper;
import ar.com.hjg.pngj.PngFilterType; import ar.com.hjg.pngj.PngFilterType;
import ar.com.hjg.pngj.PngWriter; import ar.com.hjg.pngj.PngWriter;
...@@ -328,19 +330,22 @@ public class ImageUtil ...@@ -328,19 +330,22 @@ public class ImageUtil
{ {
final int cols = image.getWidth(); final int cols = image.getWidth();
final int rows = image.getHeight(); final int rows = image.getHeight();
int bitDepth = image.getColorModel().getComponentSize(0);
ImageInfo imgInfo = new ImageInfo(cols, rows, bitDepth, false, false, false);
PngWriter png = PngWriter png =
new PngWriter(out, new ImageInfo(cols, rows, image.getColorModel() new PngWriter(out, imgInfo);
.getComponentSize(0), false, true, false));
png.setFilterType(filterType == null ? PngFilterType.FILTER_DEFAULT : filterType); png.setFilterType(filterType == null ? PngFilterType.FILTER_DEFAULT : filterType);
png.setCompLevel(compressionLevel == -1 ? 6 : compressionLevel); png.setCompLevel(compressionLevel == -1 ? 6 : compressionLevel);
int[] rowData = new int[cols]; ImageLine imageLine = new ImageLine(imgInfo);
for (int row = 0; row < rows; ++row) for (int row = 0; row < rows; ++row)
{ {
for (int col = 0; col < cols; ++col) for (int col = 0; col < cols; ++col)
{ {
rowData[col] = image.getRaster().getSample(col, row, 0); int pixel = image.getRGB(col, row);
ImageLineHelper.setPixelRGB8(imageLine, col, pixel);
} }
png.writeRow(rowData, row); imageLine.setRown(row);
png.writeRow(imageLine);
} }
png.end(); png.end();
} }
......
...@@ -26,8 +26,6 @@ import java.util.Arrays; ...@@ -26,8 +26,6 @@ import java.util.Arrays;
import java.util.Collection; import java.util.Collection;
import java.util.List; import java.util.List;
import javax.imageio.ImageIO;
import org.apache.log4j.Logger; import org.apache.log4j.Logger;
import ch.systemsx.cisd.base.utilities.OSUtilities; import ch.systemsx.cisd.base.utilities.OSUtilities;
...@@ -197,9 +195,7 @@ class Hdf5ThumbnailGenerator implements IHDF5WriterClient ...@@ -197,9 +195,7 @@ class Hdf5ThumbnailGenerator implements IHDF5WriterClient
ImageUtil.rescale(image, thumbnailsStorageFormat.getMaxWidth(), ImageUtil.rescale(image, thumbnailsStorageFormat.getMaxWidth(),
thumbnailsStorageFormat.getMaxHeight(), false, thumbnailsStorageFormat.getMaxHeight(), false,
thumbnailsStorageFormat.isHighQuality()); thumbnailsStorageFormat.isHighQuality());
// TODO 2011-08-31, Franz-Josef Elmer: Uncomment when new fast method is working correctly for colored images ImageUtil.writeImageToPng(thumbnail, bufferOutputStream);
// ImageUtil.writeImageToPng(thumbnail, bufferOutputStream);
ImageIO.write(thumbnail, "png", bufferOutputStream);
return bufferOutputStream.toByteArray(); return bufferOutputStream.toByteArray();
} }
......
...@@ -30,8 +30,6 @@ import java.util.Arrays; ...@@ -30,8 +30,6 @@ import java.util.Arrays;
import java.util.List; import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicBoolean;
import javax.imageio.ImageIO;
import org.apache.log4j.Logger; import org.apache.log4j.Logger;
import ch.systemsx.cisd.base.exceptions.CheckedExceptionTunnel; import ch.systemsx.cisd.base.exceptions.CheckedExceptionTunnel;
...@@ -50,6 +48,7 @@ import ch.systemsx.cisd.imagereaders.ImageID; ...@@ -50,6 +48,7 @@ import ch.systemsx.cisd.imagereaders.ImageID;
import ch.systemsx.cisd.imagereaders.ImageReaderConstants; import ch.systemsx.cisd.imagereaders.ImageReaderConstants;
import ch.systemsx.cisd.imagereaders.ImageReaderFactory; import ch.systemsx.cisd.imagereaders.ImageReaderFactory;
import ch.systemsx.cisd.openbis.dss.etl.dto.api.v1.transformations.ConvertToolImageTransformerFactory.ToolChoice; import ch.systemsx.cisd.openbis.dss.etl.dto.api.v1.transformations.ConvertToolImageTransformerFactory.ToolChoice;
import ch.systemsx.cisd.openbis.dss.generic.shared.utils.ImageUtil;
/** /**
* An {@link IStreamingImageTransformer} using the convert command line tool for transformations. * An {@link IStreamingImageTransformer} using the convert command line tool for transformations.
...@@ -128,10 +127,7 @@ public class ConvertToolImageTransformer implements IStreamingImageTransformer ...@@ -128,10 +127,7 @@ public class ConvertToolImageTransformer implements IStreamingImageTransformer
{ {
try try
{ {
// TODO 2011-08-31, Franz-Josef Elmer: Uncomment when new fast method is working byte[] input = ImageUtil.imageToPngFast(image);
// correctly for colored images
// byte[] input = ImageUtil.imageToPngFast(image);
byte[] input = toByteArray(image);
byte[] output = transform(input); byte[] output = transform(input);
return toBufferedImage(output); return toBufferedImage(output);
} catch (IOException ioex) } catch (IOException ioex)
...@@ -265,11 +261,4 @@ public class ConvertToolImageTransformer implements IStreamingImageTransformer ...@@ -265,11 +261,4 @@ public class ConvertToolImageTransformer implements IStreamingImageTransformer
return result; return result;
} }
private byte[] toByteArray(BufferedImage image) throws IOException
{
ByteArrayOutputStream bos = new ByteArrayOutputStream();
ImageIO.write(image, PNG, bos);
return bos.toByteArray();
}
} }
...@@ -869,22 +869,7 @@ public class ImageChannelsUtils ...@@ -869,22 +869,7 @@ public class ImageChannelsUtils
private static IContent createPngContent(BufferedImage image, String nameOrNull) private static IContent createPngContent(BufferedImage image, String nameOrNull)
{ {
// TODO 2011-08-31, Franz-Josef Elmer: Uncomment when new fast method is working correctly for colored images final byte[] output = ImageUtil.imageToPngFast(image);
// final byte[] output = ImageUtil.imageToPngFast(image);
final byte[] output = writeBufferImageAsPng(image).toByteArray();
return new ByteArrayBasedContent(output, nameOrNull); return new ByteArrayBasedContent(output, nameOrNull);
} }
private static ByteArrayOutputStream writeBufferImageAsPng(BufferedImage image)
{
ByteArrayOutputStream output = new ByteArrayOutputStream();
try
{
ImageIO.write(image, "png", output);
} catch (IOException ex)
{
throw EnvironmentFailureException.fromTemplate("Cannot encode image.", ex);
}
return output;
}
} }
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