All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.algart.matrices.tiff.awt.AWTImages Maven / Gradle / Ivy

There is a newer version: 1.3.7
Show newest version
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2023-2024 Daniel Alievsky, AlgART Laboratory (http://algart.net)
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package net.algart.matrices.tiff.awt;

import net.algart.arrays.JArrays;

import java.awt.*;
import java.awt.color.ColorSpace;
import java.awt.image.*;
import java.nio.ByteOrder;
import java.util.Objects;

/**
 * A utility class with convenience methods for manipulating images in
 * {@link BufferedImage} form.
 *
 * 

This is a reduced version of the original class AWTImageTools, written by Curtis Rueden. * - Daniel Alievsky * * @author Curtis Rueden */ public final class AWTImages { // (It is placed here to avoid autocorrection by IntelliJ IDEA) /* * #%L * SCIFIO library for reading and converting scientific file formats. * %% * Copyright (C) 2011 - 2023 SCIFIO developers. * %% * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * #L% */ private AWTImages() { } /** * Creates an image from the given single-channel byte data. * * @param data Array containing image data. * @param w Width of image plane. * @param h Height of image plane. * @param signed Whether the byte values should be treated as signed (-128 to * 127) instead of unsigned (0 to 255). */ public static BufferedImage makeImage(byte[] data, int w, int h, boolean signed) { return makeImage(new byte[][]{data}, w, h, signed); } /** * Creates an image from the given single-channel short data. * * @param data Array containing image data. * @param w Width of image plane. * @param h Height of image plane. * @param signed Whether the short values should be treated as signed (-32768 * to 32767) instead of unsigned (0 to 65535). */ public static BufferedImage makeImage(short[] data, int w, int h, boolean signed) { return makeImage(new short[][]{data}, w, h, signed); } /** * Creates an image from the given single-channel int data. * * @param data Array containing image data. * @param w Width of image plane. * @param h Height of image plane. * @param signed Whether the int values should be treated as signed (-2^31 to * 2^31-1) instead of unsigned (0 to 2^32-1). */ public static BufferedImage makeImage(int[] data, int w, int h, boolean signed) { return makeImage(new int[][]{data}, w, h, signed); } /** * Creates an image from the given single-channel float data. * * @param data Array containing image data. * @param w Width of image plane. * @param h Height of image plane. */ public static BufferedImage makeImage(float[] data, int w, int h) { return makeImage(new float[][]{data}, w, h); } /** * Creates an image from the given single-channel double data. * * @param data Array containing image data. * @param w Width of image plane. * @param h Height of image plane. */ public static BufferedImage makeImage(double[] data, int w, int h) { return makeImage(new double[][]{data}, w, h); } // -- Image construction - from 1D (interleaved or banded) data arrays -- public static BufferedImage makeSeparatedImage(byte[] data, int w, int h, int c) { return makeImage(data, w, h, c, false); } public static BufferedImage makeImage(byte[] data, int w, int h, int c, boolean interleaved) { return makeImage(data, w, h, c, interleaved, false); } /** * Creates an image from the given byte data. * * @param data Array containing image data. * @param w Width of image plane. * @param h Height of image plane. * @param c Number of channels. * @param interleaved If set, the channels are assumed to be interleaved; * otherwise they are assumed to be sequential. For example, for RGB * data, the pattern "RGBRGBRGB..." is interleaved, while * "RRR...GGG...BBB..." is sequential. * @param signed Whether the byte values should be treated as signed (-128 to * 127) instead of unsigned (0 to 255). */ public static BufferedImage makeImage(byte[] data, int w, int h, int c, boolean interleaved, boolean signed) { if (c == 1) { return makeImage(data, w, h, signed); } if (c > 2) { return makeRGBImage(data, c, w, h, interleaved); } int dataType; DataBuffer buffer; dataType = DataBuffer.TYPE_BYTE; if (signed) { buffer = new SignedByteBuffer(data, c * w * h); } else { buffer = new DataBufferByte(data, c * w * h); } return constructImage(c, dataType, w, h, interleaved, false, buffer); } /** * Creates an image from the given short data. * * @param data Array containing image data. * @param w Width of image plane. * @param h Height of image plane. * @param c Number of channels. * @param interleaved If set, the channels are assumed to be interleaved; * otherwise they are assumed to be sequential. For example, for RGB * data, the pattern "RGBRGBRGB..." is interleaved, while * "RRR...GGG...BBB..." is sequential. * @param signed Whether the short values should be treated as signed (-32768 * to 32767) instead of unsigned (0 to 65535). */ public static BufferedImage makeImage(short[] data, int w, int h, int c, boolean interleaved, boolean signed) { if (c == 1) { return makeImage(data, w, h, signed); } int dataType; DataBuffer buffer; if (signed) { dataType = DataBuffer.TYPE_SHORT; buffer = new SignedShortBuffer(data, c * w * h); } else { dataType = DataBuffer.TYPE_USHORT; buffer = new DataBufferUShort(data, c * w * h); } return constructImage(c, dataType, w, h, interleaved, false, buffer); } /** * Creates an image from the given int data. * * @param data Array containing image data. * @param w Width of image plane. * @param h Height of image plane. * @param c Number of channels. * @param interleaved If set, the channels are assumed to be interleaved; * otherwise they are assumed to be sequential. For example, for RGB * data, the pattern "RGBRGBRGB..." is interleaved, while * "RRR...GGG...BBB..." is sequential. * @param signed Whether the int values should be treated as signed (-2^31 to * 2^31-1) instead of unsigned (0 to 2^32-1). */ public static BufferedImage makeImage(int[] data, int w, int h, int c, boolean interleaved, boolean signed) { if (c == 1) { return makeImage(data, w, h, signed); } final int dataType = DataBuffer.TYPE_INT; DataBuffer buffer; if (signed) { buffer = new DataBufferInt(data, c * w * h); } else { buffer = new UnsignedIntBuffer(data, c * w * h); } return constructImage(c, dataType, w, h, interleaved, false, buffer); } /** * Creates an image from the given float data. * * @param data Array containing image data. * @param w Width of image plane. * @param h Height of image plane. * @param c Number of channels. * @param interleaved If set, the channels are assumed to be interleaved; * otherwise they are assumed to be sequential. For example, for RGB * data, the pattern "RGBRGBRGB..." is interleaved, while * "RRR...GGG...BBB..." is sequential. */ public static BufferedImage makeImage(float[] data, int w, int h, int c, boolean interleaved) { if (c == 1) { return makeImage(data, w, h); } final int dataType = DataBuffer.TYPE_FLOAT; final DataBuffer buffer = new DataBufferFloat(data, c * w * h); return constructImage(c, dataType, w, h, interleaved, false, buffer); } /** * Creates an image from the given double data. * * @param data Array containing image data. * @param w Width of image plane. * @param h Height of image plane. * @param c Number of channels. * @param interleaved If set, the channels are assumed to be interleaved; * otherwise they are assumed to be sequential. For example, for RGB * data, the pattern "RGBRGBRGB..." is interleaved, while * "RRR...GGG...BBB..." is sequential. */ public static BufferedImage makeImage(double[] data, int w, int h, int c, boolean interleaved) { if (c == 1) { return makeImage(data, w, h); } final int dataType = DataBuffer.TYPE_DOUBLE; final DataBuffer buffer = new DataBufferDouble(data, c * w * h); return constructImage(c, dataType, w, h, interleaved, false, buffer); } // -- Image construction - from 2D (banded) data arrays -- /** * Creates an image from the given byte data. * * @param data Array containing image data. It is assumed that each channel * corresponds to one element of the array. For example, for RGB * data, data[0] is R, data[1] is G, and data[2] is B. * @param w Width of image plane. * @param h Height of image plane. * @param signed Whether the byte values should be treated as signed (-128 to * 127) instead of unsigned (0 to 255). */ public static BufferedImage makeImage(byte[][] data, int w, int h, boolean signed) { if (data.length > 2) { return makeRGBImage(data, w, h); } int dataType; DataBuffer buffer; dataType = DataBuffer.TYPE_BYTE; if (signed) { buffer = new SignedByteBuffer(data, data[0].length); } else { buffer = new DataBufferByte(data, data[0].length); } return constructImage(data.length, dataType, w, h, false, true, buffer); } /** * Creates an image from the given short data. * * @param data Array containing image data. It is assumed that each channel * corresponds to one element of the array. For example, for RGB * data, data[0] is R, data[1] is G, and data[2] is B. * @param w Width of image plane. * @param h Height of image plane. * @param signed Whether the short values should be treated as signed (-32768 * to 32767) instead of unsigned (0 to 65535). */ public static BufferedImage makeImage(short[][] data, int w, int h, boolean signed) { int dataType; DataBuffer buffer; if (signed) { dataType = DataBuffer.TYPE_SHORT; buffer = new SignedShortBuffer(data, data[0].length); } else { dataType = DataBuffer.TYPE_USHORT; buffer = new DataBufferUShort(data, data[0].length); } return constructImage(data.length, dataType, w, h, false, true, buffer); } /** * Creates an image from the given int data. * * @param data Array containing image data. It is assumed that each channel * corresponds to one element of the array. For example, for RGB * data, data[0] is R, data[1] is G, and data[2] is B. * @param w Width of image plane. * @param h Height of image plane. * @param signed Whether the int values should be treated as signed (-2^31 to * 2^31-1) instead of unsigned (0 to 2^32-1). */ public static BufferedImage makeImage(int[][] data, int w, int h, boolean signed) { final int dataType = DataBuffer.TYPE_INT; DataBuffer buffer; if (signed) { buffer = new DataBufferInt(data, data[0].length); } else { buffer = new UnsignedIntBuffer(data, data[0].length); } return constructImage(data.length, dataType, w, h, false, true, buffer); } /** * Creates an image from the given single-precision floating point data. * * @param data Array containing image data. It is assumed that each channel * corresponds to one element of the array. For example, for RGB * data, data[0] is R, data[1] is G, and data[2] is B. * @param w Width of image plane. * @param h Height of image plane. */ public static BufferedImage makeImage(float[][] data, int w, int h) { final int dataType = DataBuffer.TYPE_FLOAT; final DataBuffer buffer = new DataBufferFloat(data, data[0].length); return constructImage(data.length, dataType, w, h, false, true, buffer); } /** * Creates an image from the given double-precision floating point data. * * @param data Array containing image data. It is assumed that each channel * corresponds to one element of the array. For example, for RGB * data, data[0] is R, data[1] is G, and data[2] is B. * @param w Width of image plane. * @param h Height of image plane. */ public static BufferedImage makeImage(double[][] data, int w, int h) { final int dataType = DataBuffer.TYPE_DOUBLE; final DataBuffer buffer = new DataBufferDouble(data, data[0].length); return constructImage(data.length, dataType, w, h, false, true, buffer); } // -- Image construction - with type conversion -- /** * Creates an image from the given raw byte array, performing any necessary * type conversions. * * @param data Array containing image data. * @param w Width of image plane. * @param h Height of image plane. * @param c Number of channels. * @param interleaved If set, the channels are assumed to be interleaved; * otherwise they are assumed to be sequential. For example, for RGB * data, the pattern "RGBRGBRGB..." is interleaved, while * "RRR...GGG...BBB..." is sequential. * @param bpp Denotes the number of bytes in the returned primitive type (e.g. * if bpp == 2, we should return an array of type short). * @param fp If set and bpp == 4 or bpp == 8, then return floats or doubles. * @param little Whether byte array is in little-endian order. * @param signed Whether the data values should be treated as signed instead * of unsigned. */ public static BufferedImage makeImage( byte[] data, int w, int h, int c, boolean interleaved, int bpp, boolean fp, boolean little, boolean signed) { final Object pixels = makeArray(data, bpp % 3 == 0 ? bpp / 3 : bpp, fp, little); if (pixels instanceof byte[]) { return makeImage((byte[]) pixels, w, h, c, interleaved, signed); } else if (pixels instanceof short[]) { return makeImage((short[]) pixels, w, h, c, interleaved, signed); } else if (pixels instanceof int[]) { return makeImage((int[]) pixels, w, h, c, interleaved, signed); } else if (pixels instanceof float[]) { return makeImage((float[]) pixels, w, h, c, interleaved); } else if (pixels instanceof double[]) { return makeImage((double[]) pixels, w, h, c, interleaved); } return null; } /** * Creates an image from the given raw byte array, performing any necessary * type conversions. * * @param data Array containing image data, one channel per element. * @param w Width of image plane. * @param h Height of image plane. * @param bpp Denotes the number of bytes in the returned primitive type (e.g. * if bpp == 2, we should return an array of type short). * @param fp If set and bpp == 4 or bpp == 8, then return floats or doubles. * @param little Whether byte array is in little-endian order. * @param signed Whether the data values should be treated as signed instead * of unsigned. */ public static BufferedImage makeImage( byte[][] data, int w, int h, int bpp, boolean fp, boolean little, boolean signed) { final int c = data.length; Object v = null; for (int i = 0; i < c; i++) { final Object pixels = makeArray(data[i], bpp % 3 == 0 ? bpp / 3 : bpp, fp, little); if (pixels instanceof byte[]) { if (v == null) { v = new byte[c][]; } ((byte[][]) v)[i] = (byte[]) pixels; } else if (pixels instanceof short[]) { if (v == null) { v = new short[c][]; } ((short[][]) v)[i] = (short[]) pixels; } else if (pixels instanceof int[]) { if (v == null) { v = new int[c][]; } ((int[][]) v)[i] = (int[]) pixels; } else if (pixels instanceof float[]) { if (v == null) { v = new float[c][]; } ((float[][]) v)[i] = (float[]) pixels; } else if (pixels instanceof double[]) { if (v == null) { v = new double[c][]; } ((double[][]) v)[i] = (double[]) pixels; } } if (v instanceof byte[][]) { return makeImage((byte[][]) v, w, h, signed); } else if (v instanceof short[][]) { return makeImage((short[][]) v, w, h, signed); } else if (v instanceof int[][]) { return makeImage((int[][]) v, w, h, signed); } else if (v instanceof float[][]) { return makeImage((float[][]) v, w, h); } else if (v instanceof double[][]) { return makeImage((double[][]) v, w, h); } return null; } /** * Creates an RGB image from the given raw byte array, performing any * necessary type conversions. * * @param data Array containing image data. * @param c Nuber of channels. NB: Channels over 4 will be discarded. * @param h Height of image plane. * @param w Width of image plane. * @param interleaved If set, the channels are assumed to be interleaved; * otherwise they are assumed to be sequential. For example, for RGB * data, the pattern "RGBRGBRGB..." is interleaved, while * "RRR...GGG...BBB..." is sequential. */ public static BufferedImage makeRGBImage(byte[] data, int c, int w, int h, boolean interleaved) { final int cc = Math.min(c, 4); // throw away channels beyond 4 final int[] buf = new int[data.length / c]; final int nBits = (cc - 1) * 8; for (int i = 0; i < buf.length; i++) { for (int q = 0; q < cc; q++) { if (interleaved) { buf[i] |= ((data[i * c + q] & 0xff) << (nBits - q * 8)); } else { buf[i] |= ((data[q * buf.length + i] & 0xff) << (nBits - q * 8)); } } } final DataBuffer buffer = new DataBufferInt(buf, buf.length); return constructImage(cc, DataBuffer.TYPE_INT, w, h, false, false, buffer); } /** * Creates an RGB image from the given raw byte array * * @param data Array containing channel-separated arrays of image data * @param h Height of image plane. * @param w Width of image plane. */ public static BufferedImage makeRGBImage(byte[][] data, int w, int h) { final int[] buf = new int[data[0].length]; final int nBits = (data.length - 1) * 8; for (int i = 0; i < buf.length; i++) { for (int q = 0; q < data.length; q++) { buf[i] |= ((data[q][i] & 0xff) << (nBits - q * 8)); } } final DataBuffer buffer = new DataBufferInt(buf, buf.length); return constructImage(data.length, DataBuffer.TYPE_INT, w, h, false, false, buffer); } // -- Image construction - miscellaneous -- /** * Creates an image with the given DataBuffer. */ public static BufferedImage constructImage( int c, int type, int w, int h, boolean interleaved, boolean banded, DataBuffer buffer) { return constructImage(c, type, w, h, interleaved, banded, buffer, null); } /** * Creates an image with the given DataBuffer. */ public static BufferedImage constructImage( int c, int type, int w, int h, boolean interleaved, boolean banded, DataBuffer buffer, ColorModel colorModel) { if (c > 4) { throw new IllegalArgumentException("Cannot construct image with " + c + " channels"); } if (colorModel == null || colorModel instanceof DirectColorModel) { colorModel = makeColorModel(c, type); if (colorModel == null) { return null; } if (buffer instanceof UnsignedIntBuffer) { colorModel = new UnsignedIntColorModel(32, type, c); } } SampleModel model; if (c > 2 && type == DataBuffer.TYPE_INT && buffer.getNumBanks() == 1 && !(buffer instanceof UnsignedIntBuffer)) { final int[] bitMasks = new int[c]; for (int i = 0; i < c; i++) { bitMasks[i] = 0xff << ((c - i - 1) * 8); } model = new SinglePixelPackedSampleModel(DataBuffer.TYPE_INT, w, h, bitMasks); } else if (banded) { model = new BandedSampleModel(type, w, h, c); } else if (interleaved) { final int[] bandOffsets = new int[c]; for (int i = 0; i < c; i++) { bandOffsets[i] = i; } model = new PixelInterleavedSampleModel(type, w, h, c, c * w, bandOffsets); } else { final int[] bandOffsets = new int[c]; for (int i = 0; i < c; i++) { bandOffsets[i] = i * w * h; } model = new ComponentSampleModel(type, w, h, 1, w, bandOffsets); } final WritableRaster raster = Raster.createWritableRaster(model, buffer, null); BufferedImage b = null; if (c == 1 && type == DataBuffer.TYPE_BYTE && !(buffer instanceof SignedByteBuffer)) { if (colorModel instanceof IndexColorModel) { b = new BufferedImage(w, h, BufferedImage.TYPE_BYTE_INDEXED); } else { b = new BufferedImage(w, h, BufferedImage.TYPE_BYTE_GRAY); } b.setData(raster); } else if (c == 1 && type == DataBuffer.TYPE_USHORT) { if (!(colorModel instanceof IndexColorModel)) { b = new BufferedImage(w, h, BufferedImage.TYPE_USHORT_GRAY); b.setData(raster); } } else if (c > 2 && type == DataBuffer.TYPE_INT && buffer .getNumBanks() == 1 && !(buffer instanceof UnsignedIntBuffer)) { if (c == 3) { b = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB); } else { b = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB); } b.setData(raster); } if (b == null) { b = new BufferedImage(colorModel, raster, false, null); } return b; } // -- Data extraction -- /** * Gets the image's pixel data as arrays of primitives, one per channel. The * returned type will be either byte[][], short[][], int[][], float[][] or * double[][], depending on the image's transfer type. */ public static Object getPixels(BufferedImage image) { return getPixels(image, 0, 0, image.getWidth(), image.getHeight()); } /** * Gets the image's pixel data as arrays of primitives, one per channel. The * returned type will be either byte[][], short[][], int[][], float[][] or * double[][], depending on the image's transfer type. */ public static Object getPixels(BufferedImage image, int x, int y, int w, int h) { final WritableRaster raster = image.getRaster(); return getPixels(raster, x, y, w, h); } /** * Gets the raster's pixel data as arrays of primitives, one per channel. The * returned type will be either byte[][], short[][], int[][], float[][] or * double[][], depending on the raster's transfer type. */ public static Object getPixels(WritableRaster raster) { return getPixels(raster, 0, 0, raster.getWidth(), raster.getHeight()); } /** * Gets the raster's pixel data as arrays of primitives, one per channel. The * returned type will be either byte[][], short[][], int[][], float[][] or * double[][], depending on the raster's transfer type. */ public static Object getPixels(WritableRaster raster, int x, int y, int w, int h) { final int tt = raster.getTransferType(); if (tt == DataBuffer.TYPE_BYTE) { return getBytes(raster, x, y, w, h); } else if (tt == DataBuffer.TYPE_USHORT || tt == DataBuffer.TYPE_SHORT) { return getShorts(raster, x, y, w, h); } else if (tt == DataBuffer.TYPE_INT) { return getInts(raster, x, y, w, h); } else if (tt == DataBuffer.TYPE_FLOAT) { return getFloats(raster, x, y, w, h); } else if (tt == DataBuffer.TYPE_DOUBLE) { return getDoubles(raster, x, y, w, h); } else { return null; } } /** * Extracts pixel data as arrays of unsigned bytes, one per channel. */ public static byte[][] getBytes(BufferedImage image) { final WritableRaster r = image.getRaster(); return getBytes(r); } /** * Extracts pixel data as arrays of unsigned bytes, one per channel. */ public static byte[][] getBytes(WritableRaster r) { return getBytes(r, 0, 0, r.getWidth(), r.getHeight()); } /** * Extracts pixel data as arrays of unsigned bytes, one per channel. */ public static byte[][] getBytes(WritableRaster r, int x, int y, int w, int h) { final boolean wholeImage = x == 0 && y == 0 && w == r.getWidth() && h == r.getHeight(); if (wholeImage && canDirectlyUseBankData(r, DataBuffer.TYPE_BYTE, DataBufferByte.class)) { return ((DataBufferByte) r.getDataBuffer()).getBankData(); } final int c = r.getNumBands(); final byte[][] samples = new byte[c][w * h]; final int[] rgbIndexes; if (wholeImage && (rgbIndexes = tryDirectlyUseBankDataForRGB(r)) != null) { assert c == 3; byte[][] data = ((DataBufferByte) r.getDataBuffer()).getBankData(); if (data.length == 1 && data[0].length == 3 * (long) w * (long) h) { // - 2nd condition should be always true separateRGB(samples, rgbIndexes, data[0], w * h); return samples; } } final int[] buf = new int[w * h]; for (int i = 0; i < c; i++) { r.getSamples(x, y, w, h, i, buf); for (int j = 0; j < buf.length; j++) { samples[i][j] = (byte) buf[j]; } } return samples; } /** * Extracts pixel data as arrays of unsigned shorts, one per channel. */ public static short[][] getShorts(BufferedImage image) { final WritableRaster r = image.getRaster(); return getShorts(r); } /** * Extracts pixel data as arrays of unsigned shorts, one per channel. */ public static short[][] getShorts(WritableRaster r) { return getShorts(r, 0, 0, r.getWidth(), r.getHeight()); } /** * Extracts pixel data as arrays of unsigned shorts, one per channel. */ public static short[][] getShorts(WritableRaster r, int x, int y, int w, int h) { final boolean wholeImage = x == 0 && y == 0 && w == r.getWidth() && h == r.getHeight(); if (wholeImage && canDirectlyUseBankData(r, DataBuffer.TYPE_USHORT, DataBufferUShort.class)) { return ((DataBufferUShort) r.getDataBuffer()).getBankData(); } final int c = r.getNumBands(); final short[][] samples = new short[c][w * h]; final int[] buf = new int[w * h]; for (int i = 0; i < c; i++) { r.getSamples(x, y, w, h, i, buf); for (int j = 0; j < buf.length; j++) { samples[i][j] = (short) buf[j]; } } return samples; } /** * Extracts pixel data as arrays of signed integers, one per channel. */ public static int[][] getInts(BufferedImage image) { final WritableRaster r = image.getRaster(); return getInts(r); } /** * Extracts pixel data as arrays of signed integers, one per channel. */ public static int[][] getInts(WritableRaster r) { return getInts(r, 0, 0, r.getWidth(), r.getHeight()); } /** * Extracts pixel data as arrays of signed integers, one per channel. */ public static int[][] getInts(WritableRaster r, int x, int y, int w, int h) { final boolean wholeImage = x == 0 && y == 0 && w == r.getWidth() && h == r.getHeight(); if (wholeImage && canDirectlyUseBankData(r, DataBuffer.TYPE_INT, DataBufferInt.class)) { return ((DataBufferInt) r.getDataBuffer()).getBankData(); } // NB: an order of magnitude faster than the naive makeType solution final int c = r.getNumBands(); final int[][] samples = new int[c][w * h]; for (int i = 0; i < c; i++) { r.getSamples(x, y, w, h, i, samples[i]); } return samples; } /** * Extracts pixel data as arrays of floats, one per channel. */ public static float[][] getFloats(BufferedImage image) { final WritableRaster r = image.getRaster(); return getFloats(r); } /** * Extracts pixel data as arrays of floats, one per channel. */ public static float[][] getFloats(WritableRaster r) { return getFloats(r, 0, 0, r.getWidth(), r.getHeight()); } /** * Extracts pixel data as arrays of floats, one per channel. */ public static float[][] getFloats(WritableRaster r, int x, int y, int w, int h) { final boolean wholeImage = x == 0 && y == 0 && w == r.getWidth() && h == r.getHeight(); if (wholeImage && canDirectlyUseBankData(r, DataBuffer.TYPE_FLOAT, DataBufferFloat.class)) { return ((DataBufferFloat) r.getDataBuffer()).getBankData(); } // NB: an order of magnitude faster than the naive makeType solution final int c = r.getNumBands(); final float[][] samples = new float[c][w * h]; for (int i = 0; i < c; i++) { r.getSamples(x, y, w, h, i, samples[i]); } return samples; } /** * Extracts pixel data as arrays of doubles, one per channel. */ public static double[][] getDoubles(BufferedImage image) { final WritableRaster r = image.getRaster(); return getDoubles(r); } /** * Extracts pixel data as arrays of doubles, one per channel. */ public static double[][] getDoubles(WritableRaster r) { return getDoubles(r, 0, 0, r.getWidth(), r.getHeight()); } /** * Extracts pixel data as arrays of doubles, one per channel. */ public static double[][] getDoubles(WritableRaster r, int x, int y, int w, int h) { final boolean wholeImage = x == 0 && y == 0 && w == r.getWidth() && h == r.getHeight(); if (wholeImage && canDirectlyUseBankData(r, DataBuffer.TYPE_DOUBLE, DataBufferDouble.class)) { return ((DataBufferDouble) r.getDataBuffer()).getBankData(); } // NB: an order of magnitude faster than the naive makeType solution final int c = r.getNumBands(); final double[][] samples = new double[c][w * h]; for (int i = 0; i < c; i++) { r.getSamples(x, y, w, h, i, samples[i]); } return samples; } /** * Return a 2D array of bytes representing the image. If the transfer type is * something other than DataBuffer.TYPE_BYTE, then each pixel value is * converted to the appropriate number of bytes. In other words, if we are * given an image with 16-bit data, each channel of the resulting array will * have width * height * 2 bytes. */ public static byte[][] getPixelBytes(BufferedImage img, boolean little) { return getPixelBytes(img, little, 0, 0, img.getWidth(), img.getHeight()); } /** * Return a 2D array of bytes representing the image. If the transfer type is * something other than DataBuffer.TYPE_BYTE, then each pixel value is * converted to the appropriate number of bytes. In other words, if we are * given an image with 16-bit data, each channel of the resulting array will * have width * height * 2 bytes. */ public static byte[][] getPixelBytes(WritableRaster r, boolean little) { return getPixelBytes(r, little, 0, 0, r.getWidth(), r.getHeight()); } /** * Return a 2D array of bytes representing the image. If the transfer type is * something other than DataBuffer.TYPE_BYTE, then each pixel value is * converted to the appropriate number of bytes. In other words, if we are * given an image with 16-bit data, each channel of the resulting array will * have width * height * 2 bytes. */ public static byte[][] getPixelBytes(BufferedImage img, boolean little, int x, int y, int w, int h) { final Object pixels = getPixels(img, x, y, w, h); final int imageType = img.getType(); byte[][] pixelBytes = null; final ByteOrder byteOrder = little ? ByteOrder.LITTLE_ENDIAN : ByteOrder.BIG_ENDIAN; if (pixels instanceof byte[][]) { pixelBytes = (byte[][]) pixels; } else if (pixels instanceof short[][] s) { pixelBytes = new byte[s.length][s[0].length * 2]; for (int i = 0; i < pixelBytes.length; i++) { for (int j = 0; j < s[0].length; j++) { JArrays.setBytes8(pixelBytes[i], j * 2, s[i][j], 2, byteOrder); } } } else if (pixels instanceof int[][] in) { if (imageType == BufferedImage.TYPE_INT_RGB || imageType == BufferedImage.TYPE_INT_BGR || imageType == BufferedImage.TYPE_INT_ARGB) { pixelBytes = new byte[in.length][in[0].length]; for (int c = 0; c < in.length; c++) { for (int i = 0; i < in[0].length; i++) { if (imageType != BufferedImage.TYPE_INT_BGR) { pixelBytes[c][i] = (byte) (in[c][i] & 0xff); } else { pixelBytes[in.length - c - 1][i] = (byte) (in[c][i] & 0xff); } } } } else { pixelBytes = new byte[in.length][in[0].length * 4]; for (int i = 0; i < pixelBytes.length; i++) { for (int j = 0; j < in[0].length; j++) { JArrays.setBytes8(pixelBytes[i], j * 4, in[i][j], 4, byteOrder); } } } } else if (pixels instanceof float[][] in) { pixelBytes = new byte[in.length][in[0].length * 4]; for (int i = 0; i < pixelBytes.length; i++) { for (int j = 0; j < in[0].length; j++) { final int v = Float.floatToIntBits(in[i][j]); JArrays.setBytes8(pixelBytes[i], j * 4, v, 4, byteOrder); } } } else if (pixels instanceof double[][] in) { pixelBytes = new byte[in.length][in[0].length * 8]; for (int i = 0; i < pixelBytes.length; i++) { for (int j = 0; j < in[0].length; j++) { final long v = Double.doubleToLongBits(in[i][j]); JArrays.setBytes8(pixelBytes[i], j * 8, v, 8, byteOrder); } } } return pixelBytes; } /** * Return a 2D array of bytes representing the image. If the transfer type is * something other than DataBuffer.TYPE_BYTE, then each pixel value is * converted to the appropriate number of bytes. In other words, if we are * given an image with 16-bit data, each channel of the resulting array will * have width * height * 2 bytes. */ public static byte[][] getPixelBytes(WritableRaster r, boolean little, int x, int y, int w, int h) { final Object pixels = getPixels(r); byte[][] pixelBytes = null; int bpp = 0; final ByteOrder byteOrder = little ? ByteOrder.LITTLE_ENDIAN : ByteOrder.BIG_ENDIAN; if (pixels instanceof byte[][]) { pixelBytes = (byte[][]) pixels; bpp = 1; } else if (pixels instanceof short[][] s) { bpp = 2; pixelBytes = new byte[s.length][s[0].length * bpp]; for (int i = 0; i < pixelBytes.length; i++) { for (int j = 0; j < s[0].length; j++) { JArrays.setBytes8(pixelBytes[i], j * bpp, s[i][j], bpp, byteOrder); } } } else if (pixels instanceof int[][] in) { bpp = 4; pixelBytes = new byte[in.length][in[0].length * bpp]; for (int i = 0; i < pixelBytes.length; i++) { for (int j = 0; j < in[0].length; j++) { JArrays.setBytes8(pixelBytes[i], j * bpp, in[i][j], bpp, byteOrder); } } } else if (pixels instanceof float[][] in) { bpp = 4; pixelBytes = new byte[in.length][in[0].length * bpp]; for (int i = 0; i < pixelBytes.length; i++) { for (int j = 0; j < in[0].length; j++) { final int v = Float.floatToIntBits(in[i][j]); JArrays.setBytes8(pixelBytes[i], j * bpp, v, bpp, byteOrder); } } } else if (pixels instanceof double[][] in) { bpp = 8; pixelBytes = new byte[in.length][in[0].length * bpp]; for (int i = 0; i < pixelBytes.length; i++) { for (int j = 0; j < in[0].length; j++) { final long v = Double.doubleToLongBits(in[i][j]); JArrays.setBytes8(pixelBytes[i], j * bpp, v, bpp, byteOrder); } } } if (x == 0 && y == 0 && w == r.getWidth() && h == r.getHeight()) { return pixelBytes; } final byte[][] croppedBytes = new byte[pixelBytes.length][w * h * bpp]; for (int c = 0; c < croppedBytes.length; c++) { for (int row = 0; row < h; row++) { final int src = (row + y) * r.getWidth() * bpp + x * bpp; final int dest = row * w * bpp; System.arraycopy(pixelBytes[c], src, croppedBytes[c], dest, w * bpp); } } return croppedBytes; } /** * Gets a color space for the given number of color components. */ public static ColorSpace makeColorSpace(int c) { int type; switch (c) { case 1 -> type = ColorSpace.CS_GRAY; case 2 -> type = TwoChannelColorSpace.CS_2C; case 3, 4 -> type = ColorSpace.CS_sRGB; default -> { return null; } } return TwoChannelColorSpace.getInstance(type); } /** * Gets a color model for the given number of color components. */ public static ColorModel makeColorModel(int c, int dataType) { final ColorSpace cs = makeColorSpace(c); return cs == null ? null : new ComponentColorModel(cs, c == 4, false, Transparency.TRANSLUCENT, dataType); } /** * Whether we can return the data buffer's bank data without performing any * copy or conversion operations. */ private static boolean canDirectlyUseBankData( WritableRaster r, int transferType, Class dataBufferClass) { final int tt = r.getTransferType(); if (tt != transferType) { return false; } final DataBuffer buffer = r.getDataBuffer(); if (!dataBufferClass.isInstance(buffer)) { return false; } final SampleModel model = r.getSampleModel(); if (!(model instanceof ComponentSampleModel csm)) { return false; } final int pixelStride = csm.getPixelStride(); if (pixelStride != 1) { return false; } final int w = r.getWidth(); final int scanlineStride = csm.getScanlineStride(); if (scanlineStride != w) { return false; } final int c = r.getNumBands(); final int[] bandOffsets = csm.getBandOffsets(); if (bandOffsets.length != c) { return false; } for (int bandOffset : bandOffsets) { if (bandOffset != 0) { return false; } } for (int i = 0; i < bandOffsets.length; i++) { if (bandOffsets[i] != i) { return false; } } return true; } private static int[] tryDirectlyUseBankDataForRGB(WritableRaster raster) { if (raster.getTransferType() != DataBuffer.TYPE_BYTE) { return null; } final DataBuffer buffer = raster.getDataBuffer(); if (!(buffer instanceof DataBufferByte)) { return null; } if (raster.getNumBands() != 3) { return null; } final SampleModel model = raster.getSampleModel(); if (!(model instanceof ComponentSampleModel csm)) { return null; } final int pixelStride = csm.getPixelStride(); if (pixelStride != 3) { return null; } final int width = raster.getWidth(); final int scanlineStride = csm.getScanlineStride(); if (scanlineStride != pixelStride * width) { return null; } final int[] bandOffsets = csm.getBandOffsets(); if (bandOffsets.length != 3) { return null; } if (bandOffsets[0] == 0 && bandOffsets[1] == 1 && bandOffsets[2] == 2) { return new int[]{0, 1, 2}; // - RGB } if (bandOffsets[0] == 2 && bandOffsets[1] == 1 && bandOffsets[2] == 0) { return new int[]{2, 1, 0}; // - BGR (typical situation for Java AWT) } return null; } private static void separateRGB(byte[][] result, int[] rgbIndexes, byte[] bytes, int numberOfPixels) { Objects.requireNonNull(bytes, "Null bytes"); assert bytes.length == 3 * numberOfPixels; final byte[] rgb0 = result[rgbIndexes[0]]; final byte[] rgb1 = result[rgbIndexes[1]]; final byte[] rgb2 = result[rgbIndexes[2]]; assert rgb0.length == numberOfPixels; assert rgb1.length == numberOfPixels; assert rgb2.length == numberOfPixels; for (int i = 0, disp = 0; i < numberOfPixels; i++) { rgb0[i] = bytes[disp++]; rgb1[i] = bytes[disp++]; rgb2[i] = bytes[disp++]; } } static Object makeArray( final byte[] b, final int bpp, final boolean fp, final boolean little) { ByteOrder byteOrder = little ? ByteOrder.LITTLE_ENDIAN : ByteOrder.BIG_ENDIAN; if (bpp == 1) { return b; } else if (bpp == 2) { return JArrays.bytesToShortArray(b, byteOrder); } else if (bpp == 4 && fp) { return JArrays.bytesToFloatArray(b, byteOrder); } else if (bpp == 4) { return JArrays.bytesToIntArray(b, byteOrder); } else if (bpp == 8 && fp) { return JArrays.bytesToDoubleArray(b, byteOrder); } else if (bpp == 8) { return JArrays.bytesToLongArray(b, byteOrder); } return null; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy