Package com.itextpdf.awt.geom

Examples of com.itextpdf.awt.geom.AffineTransform


     * @deprecated use com.itextpdf.text.geom.AffineTransform as parameter
     */
    public void concatCTM(final java.awt.geom.AffineTransform transform) {
      double matrix[] = new double[6];
      transform.getMatrix(matrix);
      concatCTM(new AffineTransform(matrix));
    }
View Full Code Here


     * @deprecated use com.itextpdf.text.geom.AffineTransform as parameter
     */
    public void setTextMatrix(final java.awt.geom.AffineTransform transform) {
      double matrix[] = new double[6];
      transform.getMatrix(matrix);
      setTextMatrix(new AffineTransform(matrix));
    }
View Full Code Here

     * @deprecated use com.itextpdf.text.geom.AffineTransform as parameter
     */
    public void transform(final java.awt.geom.AffineTransform af) {
        double matrix[] = new double[6];
        af.getMatrix(matrix);
        transform(new AffineTransform(matrix));
    }
View Full Code Here

            wordSpace = cp.wordSpace;
            textColorFill = cp.textColorFill;
            colorFill = cp.colorFill;
            textColorStroke = cp.textColorStroke;
            colorStroke = cp.colorStroke;
            CTM = new AffineTransform(cp.CTM);
            textRenderMode = cp.textRenderMode;
            extGState = cp.extGState;
        }
View Full Code Here

                translationY = bottom;
            } else {
                translationY = 0f;
            }
            canvas.saveState();
            canvas.transform(new AffineTransform(1f, 0, 0, 1f, translationX, translationY));
        }

        if (!simulate) {
            if (backgroundColor != null && getActualWidth() > && getActualHeight() > 0) {
                float backgroundWidth = getActualWidth();
View Full Code Here

     * @deprecated use com.itextpdf.text.geom.AffineTransform as parameter
     */
    public void addImage(final Image image, final java.awt.geom.AffineTransform transform) throws DocumentException {
      double matrix[] = new double[6];
      transform.getMatrix(matrix);
      addImage(image, new AffineTransform(matrix));
    }
View Full Code Here

     * @deprecated use com.itextpdf.text.geom.AffineTransform as parameter
     */
    public void addTemplate(final PdfTemplate template, final java.awt.geom.AffineTransform transform) {
      double matrix[] = new double[6];
      transform.getMatrix(matrix);
      addTemplate(template, new AffineTransform(matrix));
    }
View Full Code Here

     * @deprecated use com.itextpdf.text.geom.AffineTransform as parameter
     */
    public void concatCTM(final java.awt.geom.AffineTransform transform) {
      double matrix[] = new double[6];
      transform.getMatrix(matrix);
      concatCTM(new AffineTransform(matrix));
    }
View Full Code Here

     * @deprecated use com.itextpdf.text.geom.AffineTransform as parameter
     */
    public void setTextMatrix(final java.awt.geom.AffineTransform transform) {
      double matrix[] = new double[6];
      transform.getMatrix(matrix);
      setTextMatrix(new AffineTransform(matrix));
    }
View Full Code Here

     * @deprecated use com.itextpdf.text.geom.AffineTransform as parameter
     */
    public void transform(final java.awt.geom.AffineTransform af) {
        double matrix[] = new double[6];
        af.getMatrix(matrix);
        transform(new AffineTransform(matrix));
    }
View Full Code Here

TOP

Related Classes of com.itextpdf.awt.geom.AffineTransform

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.