|
<< Click to Display Table of Contents >> Navigation: Gnostice Document Studio .NET > Going Deeper > Document Engines |
This section explores the features of the Document Engines.
Prerequisites
1.Install the Gnostice.DocumentStudio.Foundation NuGet package in order to use the API in the Document Engines module.
2.Select one of the two available graphics engines to use in your application. For applications that run only on the Windows platform we recommend the use of the GDI-based graphics engine. If your application needs to run on non-Windows platforms then you would need to use the Skia-based graphics engine. Given below is the code snippet to set the graphics engine that will be used.
// Use GDI if we are running on Windows
if (Environment.OSVersion.Platform == PlatformID.Win32NT)
{
Framework.Graphics = new Graphics.GDIPlus.GDIPlusGraphics();
}
else
{
Framework.Graphics = new Graphics.Skia.SkiaGraphics();
}
In This Section
Text Extraction and Text Search
Exploring extraction of text and searching for text in documents.
Exploring creation and editing of PDF documents.