XR3Capture ( Demo )
DJ UI | Chromium Web Browser |
---|---|
Is a JavaFX application which allows you to take screen shots of your computer and with the help of another app XR3ImageViewer you can also view the result image.
Release V101 and above are under work for Java 10 and Java 11 modularization
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
- JavaFX-Web-Browser for Java 9 - (9.x)
<dependency>
<groupId>com.github.goxr3plus</groupId>
<artifactId>JavaFX-Web-Browser</artifactId>
<version>10.0.2</version>
</dependency>
- JavaFX-Web-Browser for Java 8 - (3.x)
<dependency>
<groupId>com.github.goxr3plus</groupId>
<artifactId>JavaFX-Web-Browser</artifactId>
<version>V3.12</version>
</dependency>
What that means ? Well you can download the jar file with Maven , Gradle etc ( the depencities will come along ) and use it inside your application .
--> You don't believe me ?? ( I am already doing this with XR3Player )
--> How you can embed it inside your application ? ( Use JitPack.io )
https://jitpack.io/#goxr3plus/XR3Capture
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
dependency>
<groupId>com.github.goxr3plus</groupId>
<artifactId>xr3capture</artifactId>
<version>V3.12</version>
</dependency>
Then from inside your code you can create an intance or multiple instances of Browser like this:
public XR3Capture xr3Capture = new XR3Capture();
and very simply open the window :
xr3Capture.stage.show();
Happy :) ? Cause i am ...
SourceForge:(https://sourceforge.net/projects/xr3capture/)