These options allow control of some of the advanced features, such as custom paper size and text extraction. Table values in bold text are the default value for that setting.
|
Sample Profile |
<?xml version="1.0" encoding="utf-8"?> <Profile Type="0" DisplayName="TIFF 300dpi Serialized Extract Text" Description ="TIFF 300dpi Serialized Extract Text"> <Settings>
<!-- Output file options --> <add Name="Devmode settings;Resolution" Value="300"/> <add Name ="Save;Output File Format" Value="TIFF Serialized"/> <add Name ="Save;Prompt" Value="0"/> <add Name ="Advanced Features;Extract Text" Value="1"/> <add Name ="Advanced Features;Extract Text Layout" Value="Physical"/> ...
</Settings> </Profile> |
|
|
Code Sample - C# |
item.Set("Devmode settings;Resolution", "300"); item.Set("Save;Output File Format", "TIFF Serialized"); item.Set("Save;Prompt", "0"); item.Set("Advanced Features;Extract Text", "1"); item.Set("Advanced Features;Extract Text Layout", "Physical"); |
|
|
Code Sample - VB.NET |
Dim item As PNDocConvQueueServiceLib.IPNDocConvQueueItem
' Create the conversion item item = New PNDocConvQueueServiceLib.PNDocConvQueueItem()
' Set conversion settings item.Set("Devmode settings;Resolution", "300") item.Set("Save;Output File Format", "TIFF Serialized") item.Set("Save;Prompt", "0") item.Set("Advanced Features;Extract Text", "1") item.Set("Advanced Features;Extract Text Layout", "Physical") ... ' convert the file item.Convert("Microsoft Word", _ "C:\Test\Report.docx", _ "C:\Test\Out\ConvertedReport") |
|
|
||||
|---|---|---|---|---|
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|