0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

複数のxps、oxpsのファイルをpdf化するバッチと複数のpdfを1つのpdfへ結合するバッチ

Last updated at Posted at 2022-02-23

ghostscriptのサイト
https://www.ghostscript.com/

ダウンロードしてパスを通す必要があるもの

xps、oxpsをpdf化するためにダウンロードするもの
https://www.ghostscript.com/releases/gxpsdnld.html
から
GNU Affero General Public License
の列に有るWindows版のものをダウンロードし、展開しパスを通す

pdfファイルを結合するためにダウンロードするもの
https://www.ghostscript.com/releases/gsdnld.html
から
GNU Affero General Public License
の列に有るWindows版のものをダウンロードし、インストールしパスを通す

使い方
下記oxps2pdf.batとcombinepdf.batのコードをコピペ、保存する。
xps、oxpsのファイルのあるフォルダーへoxps2pdf.batとcombinepdf.batを置きます。

oxps2pdf.batをダブルクリックで処理開始し、pdf化されます。

combinepdf.batの使い方

1つめの引数を、結合後のpdf名とし、それ以降が結合対象pdf名です。少数であれば空白区切りで並べていきます。

combinepdf.bat result.pdf 01_ab.pdf 02_cd.pdf

結合対象pdf名にはワイルドカードが使えます。(ファイル名の命名が規則的であれば、ある程度は順番に結合されるようです)

combinepdf.bat result.pdf 0*_*.pdf

oxps2pdf.bat

::This software includes the work that is distributed in the Apache License 2.0.
::https://www.apache.org/licenses/LICENSE-2.0

@echo off

for %%A in (*.xps *.oxps) do (
	gxpswin64  -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=%%~nA.pdf %%A
)

combinepdf.bat

::This software includes the work that is distributed in the Apache License 2.0.
::https://www.apache.org/licenses/LICENSE-2.0

@echo off

setlocal enableDelayedExpansion

for %%A in (%*) do (
	if not defined files (
		set files=%%A
	) else (
		set files=!files! %%A
	)
)

gswin64c -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=%files%

endlocal

元記事
https://egg-sandwich.com/blog/2022/01/18/%e8%a4%87%e6%95%b0%e3%81%aexps%e3%80%81oxps%e3%81%ae%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%82%92pdf%e5%8c%96%e3%81%99%e3%82%8b%e3%83%90%e3%83%83%e3%83%81%e3%81%a8%e8%a4%87%e6%95%b0%e3%81%aepdf/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?