Package com.fuelkiosk.camture.streamsws

Examples of com.fuelkiosk.camture.streamsws.ImageInfoType


    public ImageInfoType createImageInfo(
            final int width,
            final int height,
            final int colourDepth,
            final int quality) {
        final ImageInfoType imageInfo = factory.createImageInfoType();
        imageInfo.setColourDepth(BigInteger.valueOf(colourDepth));
        imageInfo.setWidth(BigInteger.valueOf(width));
        imageInfo.setHeight(BigInteger.valueOf(height));
        imageInfo.setQuality(BigInteger.valueOf(quality));
        return imageInfo;
    }
View Full Code Here

TOP

Related Classes of com.fuelkiosk.camture.streamsws.ImageInfoType

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.