We are very happy to offer the new update PDF Focus .Net 2.2.1.23! 

What's new:
  Added: PDF to Word
  Added: Text from PDF
  Improved the rendering of vector graphic from pdf to image
  Fixed minor issues

Convert PDF to Word
- Convert PDF to DOC
- Convert PDF to RTF
- Convert PDF to Text

Convert PDF to Images
- Convert PDF to JPG
- Convert PDF to TIFF
- Convert PDF to BMP
- Convert PDF to PNG

Download the trial version you can here:

http://www.sautinsoft.com/components/pdf_focus_net.zip

Read more:

http://www.sautinsoft.com/products/pdf-focus/index.php

Please let me know if you will have any suggestions/questions regarding our component.
Share on Facebook
 

Article from our customer

Hi
Our law firm serves many customers around the world! For the convenience of our customers, we launched the online service that allows to view court decisions, regulations and orders!

On our site created a comfortable private office, which realized the possibility of online viewing of all documents in HTML. If desired, our client can convert the document from the format Html formats Word, PDF or Images!

Implementation of the function to convert from HTML to Images we have entrusted the company “SautinSoft” and .Net component – PDF Vision.

Below listed implementation of converting from HTML to Images:

'Convert HTML file/url to Image file
        Dim v As New SautinSoft.PdfVision()
 
        'Convert image file to image file
        Dim imagePath As String = "C:\Web\Images\"
        Dim ret As Integer = v.ConvertHtmlFileToImageFile("http://www.sautinsoft.net",imagePath)
        ' 0 - converting successfully
        ' 1 - can't open input file, check the input path
        ' 2 - can't create output direction, check the output path
        ' 3 - converting failed
        If ret = 0 Then
            'Show produced image in Image Viewer
            System.Diagnostics.Process.Start(imagePath)
        End If

Get other details you may at SautinSoft company website: http://www.sautinsoft.com

Share on Facebook
 

Article from our customer

Hi All! Our company has a corporate server which works under Windows Azure. This document management system has many advantages, but one of the functions of document management failed to realize a long time! The aim was to convert RTF documents into HTML files. In one of the databases are stored statistical reports in RTF format which should be edited.

The SautinSoft helped us to include online converter of RTF strings from database to HTML strings. Next we’ve used a free solution to edit these HTMLs.

This is part of code in C# to convert RTF string to HTML string:

SautinSoft.RtfToHtml r = new SautinSoft.RtfToHtml();
 
r.OutputFormat = SautinSoft.RtfToHtml.eOutputFormat.HTML_401;
 
r.ImageStyle.IncludeImageInHtml = false;
 
r.ImageStyle.ImageFolder = Server.MapPath("");
 
r.ImageStyle.ImageSubFolder = "images";
 
r.ImageStyle.ImageFileName = "picture";
 
string rtf = "....."; //Get RTF from database
 
string html = r.ConvertString(rtf);
 
//show HTML
 
if (html.Length>0)
 
{
 
Response.Buffer = true;
 
Response.Clear();
 
Response.ContentType = "text/html";
 
Response.Write(html);
 
Response.Flush();
 
Response.End();
 
}
Share on Facebook
 

Article from our customer

Hi to All! Our company is engaged in geological exploration for new mineral deposits! In our daily work the one of important thing is getting of fresh topographic maps, which we are using for exploration!

Our company works closely with the Google Maps service! To all the cards were “at hand” at the employee, our Technical Department has decided to convert the maps from Google Maps to PDF format. This option allows us to have fresh cards even if no internet! To convert a variety of maps to PDF we are using the component PDF Vision.Net from the company SautinSoft.

Now our employees can always be guided by fresh cards varying degrees of zoom!

This is a code snippet to convert ASPX page (with maps.google.com) to PDF format:

SautinSoft.PdfVision v = new SautinSoft.PdfVision();
 
v.Serial = "XXXXXXXXXXXXXXX";
 
v.ImageStyle.Quality=100;
 
v.ImageStyle.HtmlTimeOutForScripts = 3f;
 
int ret = v.ConvertHtmlFileToPDFFile(@"http://gmaps-samples-v3.googlecode.com/svn/trunk/elevation/elevation-profile.html", @"c:\map-copy.pdf");
Share on Facebook
 

Article from our customer

Our organization has a legal department that works with a variety of documents: reports in DOC/DOCX, comparative tables in the XLS/XLSX format and various documents in RTF format.

Our lawyers often need to send these documents to our clients and partners around the world! Edit these documents and make changes is not desirable, and in some cases simply not acceptable!

We’ve decided to convert all of the documentation that is sent by e-mail to PDF. That is, all reports, spreadsheets, reports, etc. have to be converted to PDF and emailed to our partners. To convert DOC/DOCX /XLS/XLSX/RTF to PDF our developers found the UseOffice.Net component from the SautinSoft.

Below there is C# code to convert DOCX/XLSX to PDF:

SautinSoft.UseOffice converter = new SautinSoft.UseOffice();
 
string inputFilePath = @"E:\Web\DOC.docx";
 
string outputFilePath = @"E:\Web\DOC.pdf";
 
//Prepare UseOffice .Net, loads MS Word in memory
 
int ret = converter.InitWord();
 
if (ret==1)
 
return;
 
ret = converter.ConvertFile(inputFilePath, outputFilePath, SautinSoft.UseOffice.eDirection.DOCX_to_PDF);
 
//Release MS Word from memory
 
converter.CloseWord();
 
This is code snippet to export XLSX to PDF:
 
SautinSoft.UseOffice u = new SautinSoft.UseOffice();
 
string inputFilePath = @"E:\Excel1.xls";
 
string outputFilePath = @"E:\Result.pdf";
 
//Prepare UseOffice .Net, loads MS Excel in memory
 
int ret = u.InitExcel();
 
if (ret==1)
 
return;
 
ret = u.ConvertFile(inputFilePath, outputFilePath, SautinSoft.UseOffice.eDirection.XLS_to_PDF);
 
//Release MS Excel from memory
 
u.CloseExcel();

Get other details you may at SautinSoft company website: http://www.sautinsoft.com

James Omveri


Share on Facebook
© 2011 HTML, RTF, Excel, PDF and Word: articles about different ways to convert, export, merge and filter documents for Developers! Suffusion theme by Sayontan Sinha