All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.mike10004.xvfbmanager.XwdFileScreenshot Maven / Gradle / Ivy

The newest version!
package com.github.mike10004.xvfbmanager;

import com.github.mike10004.xvfbmanager.Screenshot.FileByteSource;

import java.io.File;

public class XwdFileScreenshot extends Screenshot.BasicScreenshot {

    public XwdFileScreenshot(FileByteSource byteSource) {
        super(byteSource);
    }

    public static XwdFileScreenshot from(File file) {
        return new XwdFileScreenshot(new FileByteSource(file));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy