PdfFocusPreserveGraphics Property |
Gets or sets a value indicating whether to load vector graphics from PDF or skip it. Default value: true.
Namespace: SautinSoftAssembly: SautinSoft.PdfFocus (in SautinSoft.PdfFocus.dll) Version: 2024.11.11
Syntax public bool PreserveGraphics { get; set; }
Public Property PreserveGraphics As Boolean
Get
Set
Property Value
BooleanRemarks
In case of 'false' you may significantly save a time of loading a PDF document and using of memory.
We recommend to set this property to 'false' when you are need only in textual data from PDF.
Example Preserve Graphics and Images using C#
using System;
using System.IO;
namespace Sample
{
class Sample
{
static void Main(string[] args)
{
string pdfFile = Path.GetFullPath(@"..\..\..\text and graphics.pdf");
string wordFile = "Result.docx";
SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();
f.OpenPdf(pdfFile);
f.PreserveGraphics = false;
f.PreserveImages = false;
if (f.PageCount > 0)
{
int result = f.ToWord(wordFile);
if (result == 0)
{
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(wordFile) { UseShellExecute = true });
}
}
}
}
}
Preserve Graphics and Images using VB.Net
Imports System
Imports System.IO
Namespace Sample
Friend Class Sample
Shared Sub Main(ByVal args() As String)
Dim pdfFile As String = Path.GetFullPath("..\..\..\text and graphics.pdf")
Dim wordFile As String = "Result.docx"
Dim f As New SautinSoft.PdfFocus()
f.OpenPdf(pdfFile)
f.PreserveGraphics = True
f.PreserveImages = False
If f.PageCount > 0 Then
Dim result As Integer = f.ToWord(wordFile)
If result = 0 Then
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(wordFile) With {.UseShellExecute = True})
End If
End If
End Sub
End Class
End Namespace
See Also