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 3 years have passed since last update.

Java PDF をTIFFに変換

Posted at

Spire.PDF for Javaを使ってPDF をTIFFに変換することができます。そして、文書のページと指定するページだけをTIFFで保存することができます。

下準備

1.E-iceblueの公式サイトからFree Spire.PDF for Java無料版をダウンロードしてください。

f:id:lendoris:20210224144116p:plain 

2.IDEを起動して新規プロジェクトを作成してから、インストールされたファイルにあった相応しいSpire.PDF.jarを参照に追加してください。

f:id:lendoris:20210224144145p:plain

コード

```JAVA import com.spire.compression.TiffCompressionTypes; import com.spire.pdf.*;

public class PDFtoTiff {
public static void main(String[] args) {
//PDFをロードします。
PdfDocument pdf=new PdfDocument();
pdf.loadFromFile("test.pdf");

    //全ページをTiffで保存します。
    pdf.saveToTiff("ToTiff.tiff");

    //指定するページをTiffで保存します(2ページ目から3ページ目まで)
    pdf.saveToTiff("ToTiff2.tiff",1,2, TiffCompressionTypes.DEFAULT);
}
<p><img src="https://cdn-ak.f.st-hatena.com/images/fotolife/l/lendoris/20210224/20210224145317.png" alt="f:id:lendoris:20210224145317p:plain" title="" class="hatena-fotolife" itemprop="image" /></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
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?