Example usage for org.apache.poi.xslf.usermodel XSLFTextShape getAnchor

List of usage examples for org.apache.poi.xslf.usermodel XSLFTextShape getAnchor

Introduction

In this page you can find the example usage for org.apache.poi.xslf.usermodel XSLFTextShape getAnchor.

Prototype

@Override
    public Rectangle2D getAnchor() 

Source Link

Usage

From source file:com.github.codeurjc.slidesconverter.PowerPointToHTML.java

License:Apache License

private Rectangle2D getRelativeFigure(XSLFTextShape tsh) {

    Rectangle2D anchor = tsh.getAnchor();

    return new Rectangle2D.Double(anchor.getX() * 100 / width, anchor.getY() * 100 / height,
            anchor.getWidth() * 100 / width, anchor.getHeight() * 100 / height);
}