Ho circa 1000 file pdf e devo convertirli in file tiff a 300 dpi. Qual è il modo migliore per farlo? Se esiste un SDK o qualcosa o uno strumento che può essere accettato, sarebbe l'ideale.
Usa Imagemagick, o meglio ancora, Ghostscript.
http://www.ibm.com/developerworks/library/l-graf2/#N101C2 ha un esempio per imagemagick:
convert foo.pdf pages-%03d.tiff
http://www.asmail.be/msg0055376363.html ha un esempio per ghostscript:
gs -q -dNOPAUSE -sDEVICE=tiffg4 -sOutputFile=a.tif foo.pdf -c quit
Vorrei installare ghostscript e leggere la pagina man di gs per vedere quali opzioni esatte sono necessarie e sperimentare.
Utilizzando GhostScript dalla riga di comando, in passato ho usato quanto segue:
su Windows:
gswin32c -dNOPAUSE -q -g300x300 -sDEVICE=tiffg4 -dBATCH -sOutputFile=output_file_name.tif input_file_name.pdf
su * nix:
gs -dNOPAUSE -q -g300x300 -sDEVICE=tiffg4 -dBATCH -sOutputFile=output_file_name.tif input_file_name.pdf
Per un gran numero di file, è possibile utilizzare un semplice script batch/Shell per convertire un numero arbitrario di file ...
Ho scritto un piccolo script PowerShell per passare attraverso una struttura di directory e convertire tutti i file pdf in file tiff usando ghostscript. Ecco la mia sceneggiatura:
$tool = 'C:\Program Files\gs\gs8.63\bin\gswin32c.exe'
$pdfs = get-childitem . -recurse | where {$_.Extension -match "pdf"}
foreach($pdf in $pdfs)
{
$tiff = $pdf.FullName.split('.')[0] + '.tiff'
if(test-path $tiff)
{
"tiff file already exists " + $tiff
}
else
{
'Processing ' + $pdf.Name
$param = "-sOutputFile=$tiff"
& $tool -q -dNOPAUSE -sDEVICE=tiffg4 $param -r300 $pdf.FullName -c quit
}
}
1) Installa GhostScript
2) Installa ImageMagick
3) Crea "Convert-to-TIFF.bat" (Windows XP, Vista, 7) e usa la seguente riga:
for %%f in (%*) DO "C:\Program Files\ImageMagick-6.6.4-Q16\convert.exe" -density 300 -compress lzw %%f %%f.tiff
Trascinando un numero qualsiasi di pagine singole PDF su questo file li convertiranno in TIFF compressi, a 300 DPI.
usando python questo è quello con cui sono finito
import os
os.popen(' '.join([
self._ghostscriptPath + 'gswin32c.exe',
'-q',
'-dNOPAUSE',
'-dBATCH',
'-r300',
'-sDEVICE=tiff12nc',
'-sPAPERSIZE=a4',
'-sOutputFile=%s %s' % (tifDest, pdfSource),
]))
Il PDF Focus .Net può farlo in questo modo:
1.da PDF a TIFF
SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();
string pdfPath = @"c:\My.pdf";
string imageFolder = @"c:\images\";
f.OpenPdf(pdfPath);
if (f.PageCount > 0)
{
//Save all PDF pages to image folder as tiff images, 200 dpi
int result = f.ToImage(imageFolder, "page",System.Drawing.Imaging.ImageFormat.Tiff, 200);
}
2.da PDF a multipagina-TIFF
//Convert PDF file to Multipage TIFF file
SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();
string pdfPath = @"c:\Document.pdf";
string tiffPath = @"c:\Result.tiff";
f.OpenPdf(pdfPath);
if (f.PageCount > 0)
{
f.ToMultipageTiff(tiffPath, 120) == 0)
{
System.Diagnostics.Process.Start(tiffPath);
}
}
Anche ABCPDF può farlo - controlla http://www.websupergoo.com/helppdf6net/default.html
Ghostscript e tiffcp richiesti Testati su Ubuntu
import os
def pdf2tiff(source, destination):
idx = destination.rindex('.')
destination = destination[:idx]
args = [
'-q', '-dNOPAUSE', '-dBATCH',
'-sDEVICE=tiffg4',
'-r600', '-sPAPERSIZE=a4',
'-sOutputFile=' + destination + '__%03d.tiff'
]
gs_cmd = 'gs ' + ' '.join(args) +' '+ source
os.system(gs_cmd)
args = [destination + '__*.tiff', destination + '.tiff' ]
tiffcp_cmd = 'tiffcp ' + ' '.join(args)
os.system(tiffcp_cmd)
args = [destination + '__*.tiff']
rm_cmd = 'rm ' + ' '.join(args)
os.system(rm_cmd)
pdf2tiff('abc.pdf', 'abc.tiff')
Che ne dici di pdf2tiff? http://python.net/~gherman/pdf2tiff.html
Forse prova anche questo? PDF Focus
Questa libreria .Net consente di risolvere il problema :)
Questo codice aiuterà (Converti 1000 PDF in file TIFF a 300 dpi in C #):
SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();
string[] pdfFiles = Directory.GetFiles(@"d:\Folder with 1000 pdfs\", "*.pdf");
string folderWithTiffs = @"d:\Folder with TIFFs\";
foreach (string pdffile in pdfFiles)
{
f.OpenPdf(pdffile);
if (f.PageCount > 0)
{
//save all pages to tiff files with 300 dpi
f.ToImage(folderWithTiffs, Path.GetFileNameWithoutExtension(pdffile), System.Drawing.Imaging.ImageFormat.Tiff, 300);
}
f.ClosePdf();
}
https://pypi.org/project/pdf2tiff/
Puoi anche usare pdf2ps, ps2image e poi convertire dall'immagine risultante in tiff con altre utility (ricordo 'paul' [paul - Ancora un altro visualizzatore di immagini (visualizza PNG, TIFF, GIF, JPG, ecc.])
Disclaimer: lavorare per il prodotto che sto raccomandando
Atalasoft ha una libreria .NET che può convertire PDF in TIFF - siamo partner di FOXIT, quindi il rendering PDF è molto buona.
Mi piace PDFTIFF.com a convert PDF a TIFF , può gestire pagine illimitate