Package com.lightcrafts.media.jai.mlib

Source Code of com.lightcrafts.media.jai.mlib.MlibScaleTableOpImage

/*
* $RCSfile: MlibScaleTableOpImage.java,v $
*
* Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
*
* Use is subject to license terms.
*
* $Revision: 1.2 $
* $Date: 2005/12/15 18:35:47 $
* $State: Exp $
*/
package com.lightcrafts.media.jai.mlib;
import java.awt.Rectangle;
import java.awt.image.DataBuffer;
import java.awt.image.Raster;
import java.awt.image.RenderedImage;
import java.awt.image.WritableRaster;
import com.lightcrafts.mediax.jai.BorderExtender;
import com.lightcrafts.mediax.jai.ImageLayout;
import com.lightcrafts.mediax.jai.Interpolation;
import com.lightcrafts.mediax.jai.InterpolationTable;
import java.util.Map;
import com.sun.medialib.mlib.*;



/**
* An OpImage class that scales an image using interpolation coefficients
* specified in a table format.
*
*/
final class MlibScaleTableOpImage extends MlibScaleOpImage {

    /**
     * Constructs an MlibScaleTableOpImage. The image dimensions are copied
     * from the source image.  The tile grid layout, SampleModel, and
     * ColorModel may optionally be specified by an ImageLayout object.
     *
     * @param source    a RenderedImage.
     * @param extender  a BorderExtender, or null.
     * @param layout    an ImageLayout optionally containing the tile
     *                  grid layout, SampleModel, and ColorModel, or null.
     * @param xScale    the x scaling factor.
     * @param yScale    the y scaling factor.
     * @param xTrans    the x translation factor.
     * @param yTrans    the y translation factor.
     * @param interp    the InterpolationTable object.
     */
    public MlibScaleTableOpImage(RenderedImage source,
         BorderExtender extender,
         Map config,
         ImageLayout layout,
         float xScale, float yScale,
         float xTrans, float yTrans,
         Interpolation interp) {
        super(source, extender, config,
              layout, xScale, yScale, xTrans, yTrans, interp, true);
    }

    /**
     * Scale the given rectangle by the specified scale and translation
     * factors. The sources are cobbled.
     *
     * @param sources   an array of sources, guarantee to provide all
     *                  necessary source data for computing the rectangle.
     * @param dest      a tile that contains the rectangle to be computed.
     * @param destRect  the rectangle within this OpImage to be processed.
     */
    protected void computeRect(Raster[] sources,
                               WritableRaster dest,
                               Rectangle destRect) {

  // Cast the Interpolation object to InterpolationTable object
  InterpolationTable jtable = (InterpolationTable)interp;

  // The Medialib InterpolationTable class equivalent
  mediaLibImageInterpTable mlibInterpTable;

  Raster source = sources[0];
  Rectangle srcRect = source.getBounds();
 
        int formatTag = MediaLibAccessor.findCompatibleTag(sources, dest);

        MediaLibAccessor srcAccessor = new MediaLibAccessor(source, srcRect,
                  formatTag);
        MediaLibAccessor dstAccessor = new MediaLibAccessor(dest, destRect,
                  formatTag);

  // Get the floating point scale factors
  float mlibScaleX = (float)scaleXRationalNum / (float)scaleXRationalDenom;
  float mlibScaleY = (float)scaleYRationalNum / (float)scaleYRationalDenom;

        // Translation to be specified to Medialib. Note that we have to
  // specify an additional translation since all images are 0 based
  // in Medialib.

  // Calculate intermediate values.
  float tempDX = (float)(srcRect.x * scaleXRationalNum) /
      (float)scaleXRationalDenom;
  float tempDY = (float)(srcRect.y * scaleYRationalNum) /
      (float)scaleYRationalDenom;

        float tx = transX - destRect.x + tempDX;
        float ty = transY - destRect.y + tempDY;

  mediaLibImage srcML[], dstML[];
 
        switch (dstAccessor.getDataType()) {
        case DataBuffer.TYPE_BYTE:
        case DataBuffer.TYPE_USHORT:
        case DataBuffer.TYPE_SHORT:
        case DataBuffer.TYPE_INT:

      mlibInterpTable =
    new mediaLibImageInterpTable(Constants.MLIB_INT,
               jtable.getWidth(),
               jtable.getHeight(),
               jtable.getLeftPadding(),
               jtable.getTopPadding(),
               jtable.getSubsampleBitsH(),
               jtable.getSubsampleBitsV(),
               jtable.getPrecisionBits(),
               jtable.getHorizontalTableData(),
               jtable.getVerticalTableData());

            srcML = srcAccessor.getMediaLibImages();
            dstML = dstAccessor.getMediaLibImages();
            for (int i = 0 ; i < dstML.length; i++) {
    Image.ZoomTranslateTable(dstML[i], srcML[i],
               (double)mlibScaleX,
               (double)mlibScaleY,
               (double)tx, (double)ty,
               mlibInterpTable,
               Constants.MLIB_EDGE_DST_NO_WRITE);
                MlibUtils.clampImage(dstML[i], getColorModel());
            }
            break;

        case DataBuffer.TYPE_FLOAT:

      mlibInterpTable =
    new mediaLibImageInterpTable(
              Constants.MLIB_FLOAT,
              jtable.getWidth(),
              jtable.getHeight(),
              jtable.getLeftPadding(),
              jtable.getTopPadding(),
              jtable.getSubsampleBitsH(),
              jtable.getSubsampleBitsV(),
              jtable.getPrecisionBits(),
              jtable.getHorizontalTableDataFloat(),
              jtable.getVerticalTableDataFloat());
     
      srcML = srcAccessor.getMediaLibImages();
            dstML = dstAccessor.getMediaLibImages();
            for (int i = 0 ; i < dstML.length; i++) {
    Image.ZoomTranslateTable_Fp(dstML[i], srcML[i],
                  (double)mlibScaleX,
                  (double)mlibScaleY,
                  (double)tx,
                  (double)ty,
                  mlibInterpTable,
                  Constants.MLIB_EDGE_DST_NO_WRITE);
            }
            break;

        case DataBuffer.TYPE_DOUBLE:

      mlibInterpTable =
    new mediaLibImageInterpTable(
             Constants.MLIB_DOUBLE,
             jtable.getWidth(),
             jtable.getHeight(),
             jtable.getLeftPadding(),
             jtable.getTopPadding(),
             jtable.getSubsampleBitsH(),
             jtable.getSubsampleBitsV(),
             jtable.getPrecisionBits(),
             jtable.getHorizontalTableDataDouble(),
             jtable.getVerticalTableDataDouble());

      srcML = srcAccessor.getMediaLibImages();
            dstML = dstAccessor.getMediaLibImages();
            for (int i = 0 ; i < dstML.length; i++) {
    Image.ZoomTranslateTable_Fp(dstML[i], srcML[i],
                  (double)mlibScaleX,
                  (double)mlibScaleY,
                  (double)tx,
                  (double)ty,
                  mlibInterpTable,
                  Constants.MLIB_EDGE_DST_NO_WRITE);
            }
            break;

        default:
            String className = this.getClass().getName();
            throw new RuntimeException(JaiI18N.getString("Generic2"));
        }

        if (dstAccessor.isDataCopy()) {
            dstAccessor.clampDataArrays();
            dstAccessor.copyDataToRaster();
        }
    }
}
TOP

Related Classes of com.lightcrafts.media.jai.mlib.MlibScaleTableOpImage

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.