Examples of CxCy


Examples of org.docx4j.openpackaging.parts.WordprocessingML.BinaryPartAbstractImage.CxCy

    }
    private void calculate(double imageWidth, double imageHeight, int slideWidth, int slideHeight, double expectedWidth, double expectedHeight) {
        // given
       
        // when
        CxCy scale = CxCy.scaleToFit(imageWidth, imageHeight, slideWidth, slideHeight);
       
        // then
        assertThat(scale.getCx(), is((long)expectedWidth));
        assertThat(scale.getCy(), is((long)expectedHeight));
    }
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.