Package com.lightcrafts.media.jai.iterator

Examples of com.lightcrafts.media.jai.iterator.WrapperRI


     * @param bounds the bounding Rectangle for the iterator, or null.
     * @return a RectIter allowing read-only access to the source.
     */
    public static RectIter create(Raster ras,
                                  Rectangle bounds) {
        RenderedImage im = new WrapperRI(ras);
        return create(im, bounds);
    }
View Full Code Here


     * @param bounds the bounding Rectangle for the iterator, or null.
     * @return a RandomIter allowing read-only access to the source.
     */
    public static RandomIter create(Raster ras,
                                    Rectangle bounds) {
        RenderedImage im = new WrapperRI(ras);
        return create(im, bounds);
    }
View Full Code Here

     * @param bounds the bounding Rectangle for the iterator, or null.
     * @return a RookIter allowing read-only access to the source.
     */
    public static RookIter create(Raster ras,
                                  Rectangle bounds) {
        RenderedImage im = new WrapperRI(ras);
        return create(im, bounds);
    }
View Full Code Here

TOP

Related Classes of com.lightcrafts.media.jai.iterator.WrapperRI

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.