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 :

  • CSV - Comma-separated values file
  • DCX - ZSoft IBM PC multi-page Paintbrush file
  • DIB - MS Windows Device Independent Bitmap
  • EMF - Enhanced Metafile
  • EML - Microsoft Outlook Email
  • FPX - FlashPix Format
  • GIF87 - CompuServe graphics interchange format ver 87
  • JP2 - JPEG-2000 JP2 File Format Syntax
  • MIFF - Magick image file format
  • BMP - MS Windows/OS2 Bitmap image file
  • CGM - Computer Graphics Metafile
  • DOC - Microsoft Word 1997-2003
  • DOCX - Microsoft Word
  • DOT - Microsoft Word Template
  • EPS - EPS File
  • FAX - Group 3 FAX encoding
  • FXM - WinFax Documents
  • GIF - CompuServe graphics interchange format
  • HTM - Web page
  • HTML - Web page
  • ICO - MS Windows/OS2 Icons
  • IPT - Inventor Part Document
  • JPEG - Joint Photographic Experts Group JFIF format
  • JPG - Joint Photographic Experts Group JFIF format
  • KBD - General Knowledge Base document
  • LOG - Log file
  • LWP - Lotus Word Pro Document
  • MHT - Web archive
  • MPT - Microsoft Project file
  • ODF - OpenDocument Formula
  • ODG - OpenDocument Drawing
  • ODP - OpenDocument Presentation
  • ODS - OpenDocument Spreadsheet
  • ODT - OpenDocument Text
  • PCX - PC PaintBrush
  • PDF - Adobe PDF
  • PNG - Portable Network Graphics
  • PPS - Microsoft PowerPoint Show 1997-2003
  • PPSX - Microsoft PowerPoint Show
  • PPT - Microsoft PowerPoint Presentation 1997-2003
  • PPTX - Microsoft PowerPoint Presentation
  • PRN - Print to file
  • PS - Adobe PostScript
  • PUB - Microsoft Publisher
  • RML - RedlineXML
  • RTF - Microsoft Rich Text
  • RVF - RichView format
  • SAM - Lotus Word Pro Document
  • SNP - Microsoft SnapShot File
  • TIF - Tagged Interchange File Format
  • TIFF - Tagged Interchange File Format
  • TXT - ASCII Text/ANSI Text
  • VSD - Visio Drawing
  • WK1 - Lotus 1-2-3
  • WK3 - Lotus 1-2-3
  • WK4 - Lotus 1-2-3
  • WLS - 602Tab document
  • WMF - Windows Meta File
  • WPD - 602Text document
  • WPS - Microsoft Works
  • WPT - Microsoft Works
  • WPT - 602Text document template
  • WQ1 - Corel QuattroPro
  • WRI - Microsoft Windows Write
  • XLS - Microsoft Excel 1997-2003
  • XLSX - Microsoft Excel
  • XLT - Microsoft Excel 1997-2003 Template
  • XLTX - Microsoft Excel Template





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()