Package net.sourceforge.jiu.gui.awt

Examples of net.sourceforge.jiu.gui.awt.ImageCanvas


    if (image != null)
    {
      //editor.zoomSetOriginalSize();
      Image awtImage = ImageCreator.convertToAwtImage(image, RGBA.DEFAULT_ALPHA);
      scrollPane = new ScrollPane(ScrollPane.SCROLLBARS_AS_NEEDED);
      canvas = new ImageCanvas(scrollPane);
      canvas.setInterpolation(editor.getInterpolation());
      canvas.setZoomToFit(editor.getZoomToFit());
      canvas.setImage(awtImage);
      canvas.setZoomFactors(editor.getZoomFactorX(), editor.getZoomFactorY());
      //canvas.computeZoomToFitSize();
View Full Code Here

TOP

Related Classes of net.sourceforge.jiu.gui.awt.ImageCanvas

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.