The ABCpdf .NET Gecko runtime for HTML to PDF conversion using the Firefox rendering engine.
ABCpdf operates three HTML rendering engines for insertion of HTML content. The ABCChrome engine provides google Chrome style HTML conversion. The MSHTML engine leverages IE as installed on the local...
More information
library that allows embeding gecko in C# applications.
Example Usage:
[STAThread]
static void Main(string[] args)
{
Xpcom.Initialize("Firefox");
var geckoWebBrowser = new GeckoWebBrowser {Dock = DockStyle.Fill};
Form f = new Form();...
More information
library that allows embeding gecko in C# applications.
Example Usage:
[STAThread]
static void Main(string[] args)
{
Xpcom.Initialize("Firefox");
var geckoWebBrowser = new GeckoWebBrowser {Dock = DockStyle.Fill};
Form f = new Form();...
More information
library that allows embeding gecko in C# applications.
Example Usage:
// In MonoDevelop Project Options -> Run -> Configuration -> Default set the following envrionment variables.
// set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox-Linux64
// set env var LD_PRELOAD to...
More information
library that allows embeding gecko in C# applications.
Example Usage:
// set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox
// set env var LD_PRELOAD to $(ProjectDir)/Firefox/libgeckofix.so
// add using Gecko
[STAThread]
static void Main(string[] args)
{...
More information
library that allows embeding gecko in C# applications.
Example Usage:
// set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox
// set env var LD_PRELOAD to $(ProjectDir)/Firefox/libgeckofix.so
// add using Gecko
[STAThread]
static void Main(string[] args)
{...
More information
library that allows embeding gecko in C# applications.
Example Usage:
[STAThread]
static void Main(string[] args)
{
Xpcom.Initialize("Firefox64");
var geckoWebBrowser = new GeckoWebBrowser {Dock = DockStyle.Fill};
Form f = new Form();...
More information
library that allows embeding gecko in C# applications.
Depends on Gtk3
ubuntu packages: libgtk-3-0, libgtk3.0-cil
Example Usage:
// set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox-Linux32
// set env var LD_PRELOAD to $(ProjectDir)/Firefox-Linux32/libgeckofix.so
// add using Gecko...
More information
library that allows embeding gecko in C# applications.
Depends on Gtk3
ubuntu packages: libgtk-3-0, libgtk3.0-cil
Example Usage:
// set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox-Linux64
// set env var LD_PRELOAD to $(ProjectDir)/Firefox-Linux64/libgeckofix.so
// add using Gecko...
More information