Provides extra options for loading Outlook PST, MSG and EML files.
public class CodecsPstOptions Public Class CodecsPstOptions public class CodecsPstOptions public ref class CodecsPstOptions
using Leadtools;using Leadtools.Codecs;public void CodecsPstOptionsExample(){using (RasterCodecs codecs = new RasterCodecs()){string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "file.pst");int messageCount = 0;// Get number of messages in the PST filesusing (CodecsImageInfo imageInfo = codecs.GetInformation(srcFileName, true)){messageCount = imageInfo.Pst.MessageCount;}// Load all messages as pure textfor (int messageNumber = 1; messageNumber <= messageCount; messageNumber++){// Load message number 10 as text onlycodecs.Options.Pst.Load.MessageNumber = messageNumber;codecs.Options.Pst.Load.PlainText = true;// Load the imageusing (RasterImage image = codecs.Load(srcFileName)){// do something with the image here}}}}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
Imports LeadtoolsImports Leadtools.CodecsPublic Sub CodecsPstOptionsExample()Using codecs As New RasterCodecs()Dim srcFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "file.pst")Dim messageCount As Integer = 0' Get number of messages in the PST filesUsing imageInfo As CodecsImageInfo = codecs.GetInformation(srcFileName, True)messageCount = imageInfo.Pst.MessageCountEnd Using' Load all messages as pure textFor messageNumber As Integer = 1 To messageCount' Load message number 10 as text onlycodecs.Options.Pst.Load.MessageNumber = messageNumbercodecs.Options.Pst.Load.PlainText = True' Load the imageUsing image As RasterImage = codecs.Load(srcFileName)' do something with the image hereEnd UsingNextEnd UsingEnd SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
