Package com.jgraph.gaeawt.java.awt.image

Examples of com.jgraph.gaeawt.java.awt.image.AffineTransformOp


    {
      drawImage(bufImage, x, y, null);
    }
    else if (op instanceof AffineTransformOp)
    {
      AffineTransformOp atop = (AffineTransformOp) op;
      AffineTransform xform = atop.getTransform();
      Surface srcSurf = bufImage.getImageSurface();
      int w = srcSurf.getWidth();
      int h = srcSurf.getHeight();
      blitter.blit(0, 0, srcSurf, x, y, dstSurf, w, h,
          (AffineTransform) transform.clone(), xform, composite,
View Full Code Here

TOP

Related Classes of com.jgraph.gaeawt.java.awt.image.AffineTransformOp

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.