embedded-browser

javafx snapshot without showing application or Scene

点点圈 提交于 2019-12-04 09:50:26
Hi i'm using JavaFx WebView to create Screenshot of HTML pages and it works fine but i wanted to know is it possible to do this without launching the application in Graphical Windows!! I mean aren't there any more lightweight method to get the screenshot then this: public class WebViewSample extends Application { private Scene scene; @Override public void start(Stage stage) { // create scene scene = new Scene(new Browser(snapshot), 750, 500, Color.web("#666970")); stage.setScene(scene); // show stage stage.show(); } WritableImage snapshot; public static void main(String[] args) { launch(args);

Offscreen & embeddable browsers comparison (for use in a game) [closed]

血红的双手。 提交于 2019-12-04 08:23:18
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . We've been looking at adding decent browser support to our C++ application; this question is about GUI-independent browser libraries since our project involves 3D rendering and doesn't quite fit a normal GUI. The two I've seen so far are Berkelium and Awesomium. Both seem to work in a similar way from my quick

Is Google Chrome embeddable?

梦想与她 提交于 2019-12-03 18:32:32
问题 I've asked myself if one can embed the google chrome browser engine in an own application. I'm using Delphi 2009. There's an IE ActiveX wrapper component delivered with the IDE. Also, there's a Firefox ActiveX component out there, but it's based on very old code. I'd like to embed the chrome engine. Is there a way to do this? Thanks in advance, David 回答1: Google Chrome is basically WebKit layout engine + nice UI. And WebKit can be embedded. There's also chromium embedded framework (CEF). And

Wrong viewport/page height in embedded Facebook browser in iOS 9.x

北城以北 提交于 2019-12-03 05:40:45
When opening the demo application from core-layout with the embedded browser in the Facebook app on iOS 9.x (at least), the footer element is not visible when the device is in portrait mode. If you rotate the device to landscape mode, the footer will be partially visible. However, the footer (with a button) should be completely visible. The first image shows how the demo app should look, while the second image shows how the demo app is missing the footer when viewed with the Facebook app's embedded web view (the images were grabbed from a Chrome desktop browser illustrating how the bug is

Offscreen & embeddable browsers comparison (for use in a game) [closed]

落爺英雄遲暮 提交于 2019-12-02 22:56:17
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. We've been looking at adding decent browser support to our C++ application; this question is about GUI-independent browser libraries since our project involves 3D rendering and doesn't quite fit a normal GUI. The two I've seen so far are Berkelium and Awesomium . Both seem to work in a similar way from my quick investigation, rendering to an offscreen-buffer which you blt into your own window/game/anything. Awesomium is

Is Google Chrome embeddable?

给你一囗甜甜゛ 提交于 2019-11-29 22:17:02
I've asked myself if one can embed the google chrome browser engine in an own application. I'm using Delphi 2009. There's an IE ActiveX wrapper component delivered with the IDE. Also, there's a Firefox ActiveX component out there, but it's based on very old code. I'd like to embed the chrome engine. Is there a way to do this? Thanks in advance, David Anton Gogolev Google Chrome is basically WebKit layout engine + nice UI. And WebKit can be embedded . There's also chromium embedded framework (CEF) . And finally, check out Awesomium . Update 2: A very good fit for this would be the new Electron

Getting Chrome Browser in java Applications

天涯浪子 提交于 2019-11-29 13:26:35
问题 Is there a way to get the Chrome browser inside of java applications similar to the way Awesomium works in C++ and C# applications? 回答1: There is currently no way getting the UI portion into a Java. You should consider just using barebone WebKit + V8 with many JNI calls. You could consider writing a JNA wrapper around those. To make your JNA easier, you can wrap Chromium Embedded Framework 回答2: There's a Java Wrapper for the Chromium Embedded Framework (CEF). 回答3: Try javacef. This is open

Creating a headless Chrome instance in Python

杀马特。学长 韩版系。学妹 提交于 2019-11-28 17:14:20
问题 This question describes my conclusion after researching available options for creating a headless Chrome instance in Python and asks for confirmation or resources that describe a 'better way'. From what I've seen it seems that the quickest way to get started with a headless instance of Chrome in a Python application is to use CEF (http://code.google.com/p/chromiumembedded/) with CEFPython (http://code.google.com/p/cefpython/). CEFPython seems premature though, so using it would likely mean

Use chrome as browser in C#?

泄露秘密 提交于 2019-11-27 11:12:32
Is there a way to use Google Chrome (or Safari or Firefox) as the browser in a C# application? C# now uses Internet Explorer, and the website they want to use in this program doesn't support it. You can use WebKit.NET . This is a C# wrapper for WebKit, which is the rendering engine used by Chrome. You can use GeckoFX to embed firefox Travis Gockel I don't know of any full Chrome component, but you could use WebKit, which is the rendering engine that Chrome uses. The Mono project made WebKit Sharp , which might work for you. I use Awesomium, I think it is better than GeckoFX/WebKit http:/

Use chrome as browser in C#?

社会主义新天地 提交于 2019-11-26 15:31:38
问题 Is there a way to use Google Chrome (or Safari or Firefox) as the browser in a C# application? C# now uses Internet Explorer, and the website they want to use in this program doesn't support it. 回答1: You can use WebKit.NET. This is a C# wrapper for WebKit, which is the rendering engine used by Chrome. 回答2: You can use GeckoFX to embed firefox 回答3: I don't know of any full Chrome component, but you could use WebKit, which is the rendering engine that Chrome uses. The Mono project made WebKit