001/*******************************************************************************
002 * This software is provided as a supplement to the authors' textbooks on digital
003 * image processing published by Springer-Verlag in various languages and editions.
004 * Permission to use and distribute this software is granted under the BSD 2-Clause
005 * "Simplified" License (see http://opensource.org/licenses/BSD-2-Clause).
006 * Copyright (c) 2006-2023 Wilhelm Burger, Mark J. Burge. All rights reserved.
007 * Visit https://imagingbook.com for additional details.
008 ******************************************************************************/
009package imagingbook.pdf;
010
011import com.lowagie.text.Chunk;
012import com.lowagie.text.Document;
013import com.lowagie.text.Font;
014import com.lowagie.text.PageSize;
015import com.lowagie.text.Phrase;
016import com.lowagie.text.pdf.PdfWriter;
017import ij.IJ;
018
019import java.awt.Desktop;
020import java.io.File;
021import java.io.FileOutputStream;
022
023/**
024 * Creates a 1-page PDF with samples of all 14 standard Type1 fonts embedded.
025 *
026 * @author WB
027 *
028 */
029public class Type1FontPdfDemo {
030        // TODO: check if change to https://pdfbox.apache.org/ = https://github.com/apache/pdfbox
031        // https://stackoverflow.com/questions/1775008/embed-font-into-pdf-file-by-using-itext
032        // https://stackoverflow.com/questions/2019607/how-to-embed-helvetica-font-in-pdf-using-itext?rq=1
033        // https://stackoverflow.com/questions/34328953/embedding-helvetica-neue-deskinterface-font-with-itext
034        // https://stackoverflow.com/questions/32457258/pdf-partial-font-embedding-with-itext
035        // AWT/PDF fonts issue: https://stackoverflow.com/questions/17667615/how-can-itext-embed-font-used-by-jfreechart-for-chart-title-and-labels?rq=1
036        static float fontSize = 14f;
037
038        public static void main(String[] args) {
039                
040//              File file = new File("D:/tmp/Type1FontDemo.pdf");
041                File file = new File(System.getProperty("java.io.tmpdir") + "/Type1FontDemo.pdf");
042        System.out.println("writting to " + file.getAbsolutePath());
043
044            // creation of the document with a certain size and certain margins
045            // may want to use PageSize.LETTER instead
046            Document document = new Document(PageSize.A4, 50, 50, 50, 50);
047            try {
048                FileOutputStream strm = new FileOutputStream(file);
049                PdfWriter writer = PdfWriter.getInstance(document, strm);
050
051                document.open();
052                Phrase phrase = new Phrase();
053
054                phrase.add(new Chunk("Courier", new Font(Type1CoreFont.Courier.getBaseFont(), fontSize)));
055                phrase.add(Chunk.NEWLINE);
056                
057                phrase.add(new Chunk("Courier-Bold", new Font(Type1CoreFont.CourierBold.getBaseFont(), fontSize)));
058                phrase.add(Chunk.NEWLINE);
059                
060                phrase.add(new Chunk("Courier-Oblique", new Font(Type1CoreFont.CourierOblique.getBaseFont(), fontSize)));
061                phrase.add(Chunk.NEWLINE);
062                
063                phrase.add(new Chunk("Courier-BoldOblique", new Font(Type1CoreFont.CourierBoldOblique.getBaseFont(), fontSize)));
064                phrase.add(Chunk.NEWLINE);
065                phrase.add(Chunk.NEWLINE); 
066
067                phrase.add(new Chunk("Helvetica", new Font(Type1CoreFont.Helvetica.getBaseFont(), fontSize)));
068                phrase.add(Chunk.NEWLINE);
069                
070                phrase.add(new Chunk("Helvetica-Bold", new Font(Type1CoreFont.HelveticaBold.getBaseFont(), fontSize)));
071                phrase.add(Chunk.NEWLINE);
072                
073                phrase.add(new Chunk("Helvetica-BoldOblique", new Font(Type1CoreFont.HelveticaBoldOblique.getBaseFont(), fontSize)));
074                phrase.add(Chunk.NEWLINE);
075                phrase.add(Chunk.NEWLINE);
076                
077                phrase.add(new Chunk("Times", new Font(Type1CoreFont.TimesRoman.getBaseFont(), fontSize)));
078                phrase.add(Chunk.NEWLINE);
079                
080                phrase.add(new Chunk("Times-Bold", new Font(Type1CoreFont.TimesBold.getBaseFont(), fontSize)));
081                phrase.add(Chunk.NEWLINE);
082
083                phrase.add(new Chunk("Times-BoldItalic", new Font(Type1CoreFont.TimesBoldItalic.getBaseFont(), fontSize)));
084                phrase.add(Chunk.NEWLINE);            
085
086                phrase.add(new Chunk("Times-Italic", new Font(Type1CoreFont.TimesItalic.getBaseFont(), fontSize)));
087                phrase.add(Chunk.NEWLINE);
088                phrase.add(Chunk.NEWLINE);
089
090                
091                phrase.add(new Chunk("Symbol", new Font(Type1CoreFont.Symbol.getBaseFont(), fontSize)));
092                phrase.add(Chunk.NEWLINE); 
093                
094                phrase.add(new Chunk("ZapfDingbats", new Font(Type1CoreFont.ZapfDingbats.getBaseFont(), fontSize)));
095                phrase.add(Chunk.NEWLINE);  
096
097                document.add(phrase);
098
099                document.close();
100                writer.close();
101                strm.close();
102                System.out.println("file written to " + file.getAbsolutePath());
103                
104
105            } catch (Exception ex) {
106                System.err.println(ex.getMessage());
107            }
108            
109            // try to open the PDF:
110            Desktop dt = Desktop.getDesktop();
111                try {
112                        dt.open(file);
113                } catch (Exception ex) {
114                        IJ.error("Could not open PDF file " + file.getAbsolutePath());
115                }
116        }
117            
118}