Examples of BitsPerSample


Examples of edu.harvard.hul.ois.ots.schemas.MIX.BitsPerSample

   
    protected void setBitsPerSample (int intBPS) {
        // I assume there's only a single value provided, and that it's an integer.
        // MIX allows for a different value for each component.
        try {
            BitsPerSample bps = new BitsPerSample ();
            bps.setBitsPerSampleUnit ("integer");
            bps.addBitsPerSampleValue(intBPS);
            ice.setBitsPerSample (bps);
        }
        catch (XmlContentException e) {
        }
    }
View Full Code Here
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.