Package com.lightcrafts.jai.opimage

Source Code of com.lightcrafts.jai.opimage.LCBandCombineCRIF

/* Copyright (C) 2005-2011 Fabio Riccardi */

/*
* $RCSfile: BandCombineCRIF.java,v $
*
* Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
*
* Use is subject to license terms.
*
* $Revision: 1.1 $
* $Date: 2005/02/11 04:56:14 $
* $State: Exp $
*/
package com.lightcrafts.jai.opimage;
import com.lightcrafts.media.jai.opimage.RIFUtil;

import java.awt.RenderingHints;
import java.awt.image.RenderedImage;
import java.awt.image.renderable.ParameterBlock;
import com.lightcrafts.mediax.jai.CRIFImpl;
import com.lightcrafts.mediax.jai.ImageLayout;

/**
* A <code>CRIF</code> supporting the "BandCombine" operation in the
* rendered and renderable image layers.
*
* @see com.lightcrafts.mediax.jai.operator.BandCombineDescriptor
* @see LCBandCombineOpImage
*
*
* @since EA3
*/
public class LCBandCombineCRIF extends CRIFImpl {

    /** Constructor. */
    public LCBandCombineCRIF() {
        super("LCBandCombine");
    }

    /**
     * Creates a new instance of <code>LCBandCombineOpImage</code>
     * in the rendered layer.
     *
     * @param args   The source image and the constants.
     * @param hints  Optionally contains destination image layout.
     */
    public RenderedImage create(ParameterBlock args,
                                RenderingHints hints) {
        // Get ImageLayout from renderHints if any.
        ImageLayout layout = RIFUtil.getImageLayoutHint(hints);


        return new LCBandCombineOpImage(args.getRenderedSource(0),
                                        hints,
                                        layout,
                                        (double[][])args.getObjectParameter(0));
    }
}
TOP

Related Classes of com.lightcrafts.jai.opimage.LCBandCombineCRIF

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.