Who uses PDF documents and needs their editing?
Students who need information for writing coursework or diploma work. As a matter of fact, most of electronic educational Internet resources, containing necessary information for learning activities, are presented by PDF files.
Lawyers who compile different agreements and contracts in PDF format; it happens that the text of a document doesn’t exist in another format but it is necessary to urgently make some changes or alterations in it.
Magazine editors, who receive articles in PDF-format and have correspondence with their clients, very often need to edit the articles.
SautinSoft Company presents a new PDF Focus .Net component which can help any developer to create applications (WinForms, Web-Apps, Silverlight)
The component has the following performance capabilities:
• Converting PDF into Word;
• Converting PDF into Text;
• Rasterizing PDF into images;
• Exportation of PDF into Multipage-TIFF;
Besides, during the converting PDF document, there is a possibility to adjust the following: image quality (dpi); choosing the format suitable for you – JPG, PNG, BMP, TIFF (Image format), and also color depth (RGB, GRAYSCALE).
Let’s look how to use the “SautinSoft.PdfFocus.dll”
1. Launch Microsoft's Visual Studio .NET
2. Create a new project or open existing.
3. In Solution Explorer right click "References"
4. Add a reference to the SautinSoft.PdfFocus.dll.
5. Well done! Now your project able to convert PDF documents to Word, Images and other formats!
6. These are code samples in C#:
Convert PDF to Word in C#:
//Convert PDF file to Word file
SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();
f.OpenPdf(@"
if (f.PageCount > 0)
{
f.ToWord(@"
}
Convert PDF file to Images in C#:
//Convert PDF file to Image files
SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();
f.OpenPdf(@"
//Set image properties
f.ImageOptions.Dpi = 120;
f.ImageOptions.ImageFormat = Drawing.Imaging.ImageFormat.Png;
for (int page=1; page< =f.PageCount; page++)
{
f.ToImage(@"
}
If you are looking for simple and convenient solution for converting PDF documents to RTF, then the component is created just for you!
For more information follow to the product page:
http://www.sautinsoft.com/
If you have any questions or concerns about component, let us know:
support@sautinsoft.com
Photo:
http://www.prlog.org/




