Package jrdesktop.utilities.screenCaptureCompressor

Examples of jrdesktop.utilities.screenCaptureCompressor.ScreenCapture


    }
   
    public ViewerOptions (InetAddress inetAddress, Hashtable props) {
        this.inetAddress = inetAddress;
        properties = props;
        capture = new ScreenCapture(imageQuality, blocks, blocks);
        //setNewScreenRect();
        setNewScreenImage(new Rectangle(Toolkit.getDefaultToolkit().getScreenSize()),
                colorQuality);
    }
View Full Code Here


    public ViewerOptions (InetAddress inetAddress) {
        screenRect = new Rectangle(Toolkit.getDefaultToolkit().getScreenSize());
        this.inetAddress = inetAddress;
        connectionInfos = new ConnectionInfos(true);
        capture = new ScreenCapture(imageQuality, blocks, blocks);       
        setNewScreenImage(new Rectangle(Toolkit.getDefaultToolkit().getScreenSize()),
        colorQuality);
    }
View Full Code Here

TOP

Related Classes of jrdesktop.utilities.screenCaptureCompressor.ScreenCapture

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.