Package com.sun.media.jai.opimage

Examples of com.sun.media.jai.opimage.SubsampleAverageOpImage


        /*
         * (non-Javadoc)
         * @see com.alibaba.simpleimage.ScaleSpeedTest.Scaler#doScale(javax.media .jai.PlanarImage, float)
         */
        public PlanarImage doScale(PlanarImage in, float scale) {
            PlanarImage zoomOp = new SubsampleAverageOpImage(in, null, null, (double) scale, (double) scale);

            return zoomOp;
        }
View Full Code Here

TOP

Related Classes of com.sun.media.jai.opimage.SubsampleAverageOpImage

Copyright © 2018 www.massapicom. 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.