Conversion de documents au format PDF
Le but de ce projet est de générer un fichier PDF incluant plusieurs documents de types différents.
Nous allons gérer au moins les types suivants :
- Document Word (.doc, .rtf)
- Feuille Excel (.xls)
- Fichier texte (.txt)
- Fichier HTML (.html)
- Fichier PDF (.pdf)
- Images (.jpg, .gif, .tif, .png)
Les documents devront être mis à la suite dans un unique fichier PDF, il faudra aussi permettre a l'application de générer ses propres fichiers pdf avec des données internes.
Nous allons utiliser les logiciels suivants :
Classe de conversion PDF
using System;
using System.IO;
using PDFCreator;
using Word;
using Excel;
using iTextSharp.text;
using iTextSharp.text.pdf;
using System.Drawing.Imaging;
using System.Collections;
using System.Threading;
/// <summary>
/// Cette classe converti des documents de différents types pour les intégrer a un unique document PDF
/// Prérequis : les assemblies iTextSharp, PDFCreator, Word et Excel doivent être importées dans le projet
/// </summary>
public class pdfConverter {
private string workPath; //Dossier de travail dans lequel se trouve les documents
private FileInfo inputFile;
private FileInfo [] inputFiles;
/// <summary>
/// Constructeur pour un seul fichier
/// </summary>
/// <param name="workPath"></param>
/// <param name="file"></param>
public pdfConverter (String pathParam, String fileParam)
{
workPath = pathParam;
inputFile = new FileInfo (workPath + fileParam);
}
/// <summary>
/// Constructeur pour traiter un dossier entier
/// </summary>
/// <param name="workPath"></param>
/// <param name="file"></param>
public pdfConverter (String pathParam)
{
this.workPath = pathParam;
DirectoryInfo di = new DirectoryInfo (pathParam);
if (di.Exists) {
inputFiles = di.GetFiles ();
}
}
public ArrayList convertFile ()
{
return convert2pdf (inputFile);
}
public ArrayList convertDir ()
{
int i = 0;
ArrayList fileArray = new ArrayList ();
foreach (FileInfo fi in inputFiles) {
ArrayList fileNames = convert2pdf (fi);
foreach (String file in fileNames) {
fileArray.Add (file);
}
}
return fileArray;
}
/// <summary>
/// Converti un fichier en pdf
/// </summary>
/// <returns>Retourne le nom du fichier converti en pdf</returns>
public ArrayList convert2pdf (FileInfo sourceFile)
{
ArrayList pdfFiles = new ArrayList ();
int length = sourceFile.Name.LastIndexOf (sourceFile.Extension);
string withoutExtension = sourceFile.Name.Substring (0, length);
switch (sourceFile.Extension.ToLower ()) {
case ".doc":
pdfFiles.Add (doc2pdf (sourceFile));
break;
case ".rtf":
pdfFiles.Add (doc2pdf (sourceFile));
break;
case ".xls":
ArrayList pdfArray = xls2pdf (sourceFile);
foreach (String pdf in pdfArray) {
pdfFiles.Add (pdf);
}
break;
case ".pdf":
pdfFiles.Add (sourceFile.Name);
break;
case ".gif":
pdfFiles.Add (img2pdf (sourceFile));
break;
case ".jpg":
pdfFiles.Add (img2pdf (sourceFile));
break;
case ".jpeg":
pdfFiles.Add (img2pdf (sourceFile));
break;
case ".png":
pdfFiles.Add (img2pdf (sourceFile));
break;
case ".tif":
pdfFiles.Add (tif2pdf (sourceFile));
break;
case ".tiff":
tif2pdf (sourceFile);
break;
case ".txt":
pdfFiles.Add (doc2pdf (sourceFile));
break;
case ".html":
pdfFiles.Add (doc2pdf (sourceFile));
break;
default:
pdfFiles.Add (doc2pdf (sourceFile));
break;
}
return pdfFiles;
}
public string doc2pdf (FileInfo sourceFile)
{
//Creation de l'instance PDFCreator
clsPDFCreator creator = new clsPDFCreator ();
string parameters = "/NoProcessingAtStartup";
if (!creator.cStart (parameters, true)) {
throw new NullReferenceException ("PDFCreator n'a pas pu démarrer");
}
// Chemin du fichier source et destination
object Source = sourceFile.FullName.ToString ();
int length = sourceFile.Name.LastIndexOf (sourceFile.Extension);
FileInfo pdfFile = new FileInfo (sourceFile.Directory + @"\" + sourceFile.Name.Substring (0, length));
object OutputPrint = pdfFile.FullName;
//Options de PDFCreator
PDFCreator.clsPDFCreatorOptions opt = creator.cOptions;
opt.UseAutosave = 1; //Sauvegarde automatique
opt.UseAutosaveDirectory = 1; // Use directory for saving the fileName.
opt.AutosaveDirectory = this.workPath; // Name of the output directory.
opt.AutosaveFormat = 0; // Format in which fileName is to be saved. 0 if for pdf.
opt.AutosaveFilename = pdfFile.Name; // Name of the output fileName name.
creator.cOptions = opt;
creator.cClearCache ();
//Options de l'impression Word
object prtAllDocument = Word.WdPrintOutRange.wdPrintAllDocument;
object mkTrue = true;
object mkFalse = false;
object Unknown = Type.Missing;
// Sauvegarde de l'imprimante par défaut en cours
string defaultPrinter = creator.cDefaultPrinter;
// Instance de Word
Word.ApplicationClass wordApp = new Word.ApplicationClass ();
// Imprimante active : PDFCreator
wordApp.ActivePrinter = "PDFCreator";
Word.Document worddoc = wordApp.Documents.Open (ref Source, ref mkFalse,
ref mkTrue, ref Unknown, ref Unknown,
ref Unknown, ref Unknown, ref Unknown,
ref Unknown, ref Unknown, ref Unknown,
ref Unknown, ref Unknown, ref Unknown, ref Unknown, ref Unknown);
// Specifying the format in which you want the output fileName
//Changing the format of the document
Object false_object = false;
Object missingValue = Type.Missing;
Object background = true;
Object append = true;
Object range = Word.WdPrintOutRange.wdPrintAllDocument;
Object outputFileName = Type.Missing;
Object from = Type.Missing;
Object to = Type.Missing;
Object item = Word.WdPrintOutItem.wdPrintDocumentContent;
Object copies = 1;
Object pages = Type.Missing;
Object pageType = Word.WdPrintOutPages.wdPrintAllPages;
Object printToFile = false;
Object collate = Type.Missing;
Object fileName = Type.Missing;
Object activePrinterMacGX = Type.Missing;
Object manualDuplexPrint = Type.Missing;
Object printZoomColumn = Type.Missing;
Object printZoomRow = Type.Missing;
Object printZoomPaperWidth = Type.Missing;
Object printZoomPaperHeight = Type.Missing;
wordApp.PrintOut (ref background, ref append, ref range, ref outputFileName, ref from, ref to, ref item, ref copies, ref pages, ref pageType, ref printToFile, ref collate, ref fileName, ref activePrinterMacGX, ref manualDuplexPrint, ref printZoomColumn, ref printZoomRow, ref printZoomPaperWidth, ref printZoomPaperHeight);
// Wait till doc gets queued up.
while (creator.cCountOfPrintjobs != 1) ;
creator.cPrinterStop = false;
// Wait till all doc get converted to pdf.
while (creator.cCountOfPrintjobs != 0) ;
// Close all the opened documents.
foreach (Word.Document word_doc in wordApp.Documents) {
word_doc.Close (ref false_object, ref missingValue, ref missingValue);
}
// Stop the printer.
creator.cPrinterStop = true;
// Set back the default printer.
wordApp.ActivePrinter = defaultPrinter;
wordApp.Quit (ref false_object, ref missingValue, ref missingValue);
// Close the printer
creator.cClose ();
Thread.Sleep (500);
creator = null;
return pdfFile.Name + ".pdf";
}
/// <summary>
/// Converir un fichier en PDF
/// </summary>
/// <param name="sourceFile">Nom du fichier Excel</param>
/// <returns>Nom du PDF</returns>
public ArrayList xls2pdf (FileInfo sourceFile)
{
// Instance d'Excel
object Unknown = Type.Missing;
Excel.ApplicationClass excelApplication = new Excel.ApplicationClass ();
//excelApplication.ActivePrinter = "PDFCreator";
// Imprimante active : PDFCreator