Home Products Support Resellers Feed-RSS
StudioPDF Features Requirements Developments
StudioPDF
Only $19

Simplifie the conversion of office documents and images into PDF documents. Uses a simple graphical interface to convert your documents with one click.

  



Features Awards

Support a single file conversion, or multi file conversion, modality selected from GUI.
Run with interface GUI or from command line for terminal operations.
Support the most popular files format, listed below :

  • 602 - T602 Document
  • CSV - Comma-separated values file
  • EMF - Enhanced Metafile
  • EML - Microsoft Outlook Email **
  • GIF87 - CompuServe graphics interchange format ver 87
  • JP2 - JPEG-2000 JP2 File Format Syntax
  • BMP - MS Windows/OS2 Bitmap image file
  • CGM - Computer Graphics Metafile
  • DBF - dBase
  • DIF - Data Interchange Format
  • DOC - Microsoft Word 1997-2003
  • DOCM - Microsoft Word
  • DOCX - Microsoft Word
  • DOT - Microsoft Word Template
  • DOTX - Microsoft Word
  • DXF - AutoCAD
  • EPS - EPS File
  • FAX - Group 3 FAX encoding
  • FXM - WinFax Documents *
  • GIF - CompuServe graphics interchange format
  • HTM - Web page
  • HTML - Web page
  • HWP - Hangul
  • JPEG - Joint Photographic Experts Group JFIF format
  • JPG - Joint Photographic Experts Group JFIF format
  • JTD - Ichitaro
  • JTT - Ichitaro
  • ODF - OpenDocument Formula
  • ODG - OpenDocument Drawing
  • ODP - OpenDocument Presentation
  • ODS - OpenDocument Spreadsheet
  • ODT - OpenDocument Text
  • PCX - PC PaintBrush
  • PDB - AportisDoc
  • PDF - Adobe PDF
  • PGM - Portable GrayMap
  • PNG - Portable Network Graphics
  • PPS - Microsoft PowerPoint Show 1997-2003
  • PPT - Microsoft PowerPoint Presentation 1997-2003
  • PPTX - Microsoft PowerPoint Presentation
  • PSW - Pocket Word
  • PXL - Pocket Excel
  • RTF - Microsoft Rich Text
  • SDC - StarCalc
  • SGL - StarCalc
  • SGV - Scalable Vector Graphics
  • SLK - SYLK
  • TIF - Tagged Interchange File Format
  • TIFF - Tagged Interchange File Format
  • TXT - ASCII Text/ANSI Text
  • VOR - StarCalc
  • WB2 - Quattro Pro
  • WK1 - Lotus 1-2-3
  • WK3 - Lotus 1-2-3
  • WK4 - Lotus 1-2-3
  • WMF - Windows Meta File
  • WPD - WordPerfect
  • WPS - Microsoft Works
  • XLS - Microsoft Excel 1997-2003
  • XLSB - Microsoft Excel 2007
  • XLSM - Microsoft Excel 2007
  • XLSX - Microsoft Excel
  • XLT - Microsoft Excel 1997-2003 Template
  • XLTX - Microsoft Excel Template
  • XLW - Microsoft Excel 97/2000/XP


Award

Award
Requirements

  • Windows 2000 (Service Pack 2 or higher), Windows XP, Windows 2003, Windows Vista
  • 512 Mbytes RAM
  • 1024 x 768 or higher resolution
  • OpenOffice Suite 3.0 (or higher)
  • VS.NET Framework 2.0
  • WinFax Suite 10 *
  • Microsoft Outlook **
* only if you intend convert the WinFax files, otherwise it is not necessary.
** only if you intend convert the Outlook email files, otherwise it is not necessary.

Developments

When register StudioPDF product you can using the libraries included in the software for developing other applications. Through the libraries you can convert any document that the original application already supports. Below describes the properties and methods you can use :

Property Name Short Description
Password Password for protected documents

Method Name Short Description
MultipleFiles Convert multiple documents into multiple PDF files
OpenOfficeDownloadAndInstall Automatic download and install OpenOffice Suite
SingleFile Convert a document into PDF only for old output documents
ToPDF Convert a document into PDF and return the bytes array

Below a simple example :

 Priore.StudioPDFLib

 objPDF  Convert
 bInstall  = 


    ' inizialize class
    objPDF =  Convert
 ex  Exception
    MessageBox.Show("OpenOffice Suite Required.")
    bInstall = 


 bInstall 
    
        ' automatic download OpenOffice
        ' and try again inizialize
        Convert.OpenOfficeDownloadAndInstall()
        objPDF =  Convert
     ex  Exception
        MessageBox.Show(ex.Message)
        
    
 


    ' start conversion
    objPDF.MultipleFiles("c:\my-path\*.doc","c:\my-path\")
 ex  Exception
    MessageBox.Show(ex.Message)

    objPDF.Dispose()