以下のコードはnconvert
、複数のtiff
画像を 1 つのpdf
ファイルに結合するために使用します。私の問題は、1 つの「ドキュメントまたは pdf ファイル」に 1 つの tiff 画像のみが含まれていると想定される場合は常に、スクリプトがクラッシュすることです。誰かがスクリプトを見て、なぜこれが当てはまるのかについてのアイデアを持っているなら、それは大歓迎です.
$InputLocation = "C:\Convert"
$output = "C:\Convert"
$Inputbdf = "C:\Convert\0001.bdf"
$patternCN = "\|([^\|]*)\|([^\|]*)\|"
$patternD = "(\d)/\d\d/(\d\d\d\d)"
$docs = gci "$inputLocation\*0001.tif"
$docs.count
foreach($tiff in $docs){
$pattern = $tiff.FullName.Substring($tiff.FullName.length-12,4)
$patternI = "$pattern.*"
$pages = gci "$inputLocation\$pattern*.tif"
$pagen = $pages.count
$lines = Get-Content($inputbdf)|
Foreach-object{
write-host $PatternI
if($_ -match "C:\\[some folder]\\$patternI.TIF$patternCN$patternD"){
$a = $matches[2]
$b = $matches[1]
$c = $matches[4]
$d = $matches[3]
}
}
if((test-path -path "$output\$c") -eq $false){
New-Item $output\$c -type directory
if((test-path -path "$output\$c\$d") -eq $false){
new-Item $output\$c\$d -type directory
}
}
$tiff = $tiff.Name.split('.')[0]
cd C:\[my desktop folder]\Nconvert\XnView
#./nconvert -help > nchelp.txt
.\nconvert.exe -quiet -out pdf -c 3 -multi -n 1 $pagen 1 -o "$output\$c\$d\$a$b.pdf" "$InputLocation\$pattern####.tif"
}