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

org.jpedal.parser.image.downsample.EightBitDownSampler Maven / Gradle / Ivy

/*
* ===========================================
* Java Pdf Extraction Decoding Access Library
* ===========================================
*
* Project Info:  http://www.idrsolutions.com
* Help section for developers at http://www.idrsolutions.com/support/
*
* (C) Copyright 1997-2017 IDRsolutions and Contributors.
*
* This file is part of JPedal/JPDF2HTML5
*
@LICENSE@
*
* ---------------
* EightBitDownSampler.java
* ---------------
 */
package org.jpedal.parser.image.downsample;

import org.jpedal.color.ColorSpaces;
import org.jpedal.color.DeviceRGBColorSpace;
import org.jpedal.color.GenericColorSpace;
import org.jpedal.images.SamplingFactory;
import org.jpedal.parser.image.PdfImageTypes;
import org.jpedal.parser.image.data.ImageData;

/**
 * @author markee
 */
class EightBitDownSampler {

    static GenericColorSpace downSample(final ImageData imageData, GenericColorSpace decodeColorData, final int sampling) {

        byte[] index = decodeColorData.getIndexedMap();

        final boolean hasIndex = index != null;

        int comp;

        int indexCount = 1;

        boolean isBinary = true; //assume and disprove

        if (hasIndex) { //convert to sRGB
            comp = 1;

            imageData.setCompCount(3);
            indexCount = 3;
            index = decodeColorData.convertIndexToRGB(index);

            isBinary = index.length == 6;

            //actually sRGB now so reset colorspace
            decodeColorData = new DeviceRGBColorSpace();

        } else {
            comp = decodeColorData.getColorComponentCount();
        }

        final int newW = imageData.getWidth() / sampling;
        final int newH = imageData.getHeight() / sampling;
        final byte[] data = imageData.getObjectData();

        final int oldSize = data.length;

        int x, y, xx, yy, jj;

        final int origLineLength;
        //black and white
        if (imageData.getWidth() * imageData.getHeight() == oldSize || decodeColorData.getID() == ColorSpaces.DeviceGray) {
            comp = 1;
        }

        final byte[] newData;

        if (hasIndex) { //hard-coded to 3 values
            newData = new byte[newW * newH * indexCount];
            origLineLength = imageData.getWidth();
        } else {
            newData = new byte[newW * newH * comp];
            origLineLength = imageData.getWidth() * comp;
        }
        //scan all pixels and down-sample
        for (y = 0; y < newH; y++) {
            for (x = 0; x < newW; x++) {

                //allow for edges in number of pixels left
                int wCount = sampling, hCount = sampling;
                final int wGapLeft = imageData.getWidth() - x;
                final int hGapLeft = imageData.getHeight() - y;
                if (wCount > wGapLeft) {
                    wCount = wGapLeft;
                }
                if (hCount > hGapLeft) {
                    hCount = hGapLeft;
                }

                int[] indexAv;
                for (jj = 0; jj < comp; jj++) {
                    int byteTotal = 0;
                    int count = 0;
                    int ptr, byteValue;
                    final int newPtr;
                    //noinspection ObjectAllocationInLoop
                    indexAv = new int[indexCount];
                    //count pixels in sample we will make into a pixel (ie 2x2 is 4 pixels , 4x4 is 16 pixels)
                    for (yy = 0; yy < hCount; yy++) {
                        for (xx = 0; xx < wCount; xx++) {

                            ptr = ((yy + (y * sampling)) * origLineLength) + (((x * sampling * comp) + (xx * comp) + jj));
                            if (ptr < oldSize) {
                                if (!hasIndex) {
                                    byteTotal += (data[ptr] & 255);
                                    isBinary = isBinary && (data[ptr] == 0 || data[ptr] == (byte) 255);
                                } else {
                                    for (int aa = 0; aa < indexCount; aa++) {
                                        byteValue = index[(((data[ptr] & 255) * indexCount) + aa)] & 255;
                                        isBinary = isBinary && (byteValue == 0 || byteValue == 255);
                                        indexAv[aa] += byteValue;
                                    }

                                }

                                count++;
                            }
                        }
                    }

                    //set value as white or average of pixels
                    if (hasIndex) {
                        newPtr = jj + (x * indexCount) + (newW * y * indexCount);
                        for (int aa = 0; aa < indexCount; aa++) {
                            newData[newPtr + aa] = (byte) ((indexAv[aa]) / count);
                        }
                    } else if (count > 0) {
                        newPtr = jj + (x * comp) + (newW * y * comp);
                        newData[newPtr] = (byte) ((byteTotal) / count);
                    }
                }
            }
        }

        if (isBinary) {
            imageData.setImageType(PdfImageTypes.Binary);
        }

        imageData.setObjectData(newData);
        imageData.setWidth(newW);
        imageData.setHeight(newH);

        final boolean needsSharpening = (SamplingFactory.kernelSharpen
                || SamplingFactory.downsampleLevel == SamplingFactory.mediumAndSharpen
                || SamplingFactory.downsampleLevel == SamplingFactory.highAndSharpen);

        if (needsSharpening && imageData.getImageType().equals(PdfImageTypes.Binary) && sampling < 8) {
            KernelUtils.applyKernel(imageData, comp);
        }
        return decodeColorData;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy