<< < 1 2 3 4 5 >   Sort: Date

FontView.exe - Preview Font Glyphs on Windows
How to preview font glyphs on Windows? I want to see how they look like, before deciding to use the font. On Windows computers, you can run the "FontView.exe" program to preview glyphs of any font file. For example, you can run this command to view glyphs in the Calibri Italic font: \fyicenter&g...
2018-04-12, 2247🔥, 0💬

Introduction of FOP
Where to find answers to frequently asked questions on introduction of FOP? Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on introduction of FOP: What Is FOP (Formatting Objects Processor) What Is XSL-FO Language Hello Example of XSL-FO - Hello.fo   ⇒ ...
2016-07-08, 2177🔥, 0💬

FOP Missing Italic and Bold Fonts for PDF
Why I am getting the 'Font "Calibri,normal,700" not found. Substituting with "Calibri,normal,400"' error with FOP? You are getting the "Font X,normal,700 not found. Substituting with X,normal,400" error, if FOP can not find the "Bold" font definition for the font X. Computer fonts are usually define...
2018-04-12, 2097🔥, 0💬

Hello Example of XSL-FO - Hello.fo
How to write a Hello example of XSL-FO? XSL-FO (Extensible Stylesheet Language - Formatting Objects) is an XML based language that can be used to describes the way pages are set up. Here is the XML source code of a simple XSL-FO file, Hello.fo: &lt;?xml version="1.0" encoding="utf-8"?&gt; &a...
2015-11-26, 2087🔥, 0💬

FOP Base-14 Fonts for PDF
What are Base-14 fonts supported in FOP for PDF? FOP supports Base-14 fonts (required by all PDF viewers) for PDF output: 4 fonts for Helvetica family: normal, bold, italic, bold italic. 4 fonts for Times family: normal, bold, italic, bold italic. 4 fonts for Courier family: normal, bold, italic, bo...
2018-04-21, 1977🔥, 0💬

The Default Font used by FOP
What is the default font used by FOP to generate PDF output? The default font used by FOP to generate PDF output is the Helvetica font. Here is how you can verify this: 1. Create a FO file, fyicenter.fo, without specify any font: &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;!-- fyice...
2018-04-21, 1814🔥, 0💬

FOP TTFReader - Build Font Definitions
How to build font definition file with FOP? I have the font file for my favorite font in TTF format. If you the font file in TTF format, you can build the font definition file with the FOP TTFReader program. For example, you see "Calibri" and "Gothic" font files located in \windows\fonts folder: 813...
2018-04-12, 1728🔥, 0💬

"fop" Command in fop-2.7-bin.zip
What Is the "fop" command in fop-2.7-bin.zip? Can I use it to generate PDF files? "fop" command is the command line tool that allows you to run FOP 2.7 as a standalone application. It reads a XSL-FO file and generates a PDF file by default. "fop" command requires that the environment variable JAVA_H...
2018-03-17, 1683🔥, 0💬

What Are FOP Generic Font Families
What are generic font families used in FOP? FOP supports 3 generic font families: "serif" - Generic font family for Times, Times Roman, and similar fonts. "sans-serif" - Generic font family for Helvetica, Arial, and similar fonts. "monospace" - Generic font family for Courier, New Courier, and simil...
2018-04-21, 1682🔥, 0💬

XSLT Process in fop-2.7-bin.zip
How to run the XSLT process in fop-2.7-bin.zip transform XML files using XSLT templates? which can be used to perform an XSLT process to transform an XML file using XSLT template. The XSLT process reads an XML file and an XSLT file. The output is what ever the XSLT file wants to generate. See the se...
2018-04-28, 1662🔥, 0💬

Managing Fonts in FOP PDF Output
Where to find answers to frequently asked questions on Managing Fonts in FOP PDF Output? Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Managing Fonts in FOP PDF Output: The Default Font used by FOP What Are FOP Generic Font Families FOP Base-14 Font...
2018-04-28, 1470🔥, 0💬

4-Byte Unicode Not Supported in FOP
How to use FOP to support all Unicode characters including 4-byte Unicode characters? If you want to use FOP to support all Unicode characters, you can follow this tutorial: 1. Download a font file that can support all Unicode characters from https://ftp.gnu.org/gnu/unifon t/unifont. 2. Selete the l...
2018-03-17, 1463🔥, 0💬

Copy PDF Document with iText
How to copy PDF document using iText Java Library? Here is a tutorial for copying PDF document and update it's information using iText Java Library. 1. Create a Java file, PdfUpdate.java: /** * Copy PDF and update info */ import com.itextpdf.kernel.pdf.*; import java.io.*; public class PdfUpdate { p...
2021-11-13, 1401🔥, 0💬

FOP TTFReader - Build Italic and Bold Fonts
How to build Italic, Bold and Italic-Bold fonts with FOP? To build Italic, Bold and Italic-Bold fonts with FOP, we need to find their fond files in TTF format. For example, you see "Calibri", Italic, Bold, and Italic-Bold font files located in \windows\fonts folder: 813,876 calibri.ttf &gt; for ...
2018-04-12, 1339🔥, 0💬

"FOP -awt" - Generate Output on Screen
How to use "FOP -awt" option to generate output on the screen? If you want to display output on the screen instead of PDF files, you can use the "FOP -awt" command option. Here is how to do this: fyicenter&gt; cd \local\fop-2.x\fop fyicenter&gt; fop -awt examples\fo\basic\fonts.fo org.apache...
2018-04-28, 1235🔥, 0💬

Transform XML to FO and Generate PDF with FOP
How to transform XML to FO and generate PDF with FOP? FOP allows you to transform XML to FO and generate PDF output with a single command. Here is how to do this: fyicenter&gt; cd \local\fop-2.x\fop fyicenter&gt; fop -xml examples\embedding\xml\xml\pro jectteam.xml-xsl examples\embedding\xml...
2018-04-28, 1224🔥, 0💬

Draw Shape in PDF with iText
How to draw shapes in PDF using iText Java Library? Here is a tutorial for creating a PDF document with some drawing shapes using iText Java Library. 1. Create a Java file, DrawingShape.java: /** * Drawing shapes in PDF with iText */ import com.itextpdf.kernel.pdf.*; import com.itextpdf.kernel.pdf.c...
2022-04-28, 1212🔥, 1💬

What Is iText Java Library
What is iText Java Library? iText Java is a Java Library to generate and manage PDF documents, developed by iText Group. iText Java allows you to: Generate and manipulate PDF documents, compliant with: PDF specifications including PDF 2.0 (ISO 32000-2) Create and manipulate tagged PDF Create maps an...
2021-07-03, 1002🔥, 0💬

Using iText Library in Java Programs
Where to find answers to frequently asked questions on Using iText Library in Java Programs. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Using iText Library in Java Programs: Create PDF with iText Java Library Bullet List in PDF with iText Embed I...
2021-10-02, 878🔥, 0💬

Embed Image in PDF with iText
How to embed images in PDF using iText Java Library? Here is a tutorial for creating a PDF document with an embedded image using iText Java Library. 1. Create a Java file, EmbeddedImage.java: /** * An image embedded in text in PDF with iText */ import com.itextpdf.kernel.pdf.*; import com.itextpdf.l...
2021-11-13, 829🔥, 0💬

Create PDF with iText Java Library
How to create a simple PDF document with iText Java Library? If you are using iText 7 Java Library to create a simple PDF document, you need minimum 4 JAR files shown below: kernel-7.1.4.jar layout-7.1.4.jar io-7.1.4.jar slf4j-api-1.7.31.jar Here is a tutorial to get you started. 1. Create a Java fi...
2021-10-02, 801🔥, 0💬

Get PDF Document Info with iText
How to get PDF document information using iText Java Library? Here is a tutorial for getting PDF document information using iText Java Library. 1. Create a Java file, PdfInfo.java: /** * Get PDF info */ import com.itextpdf.kernel.pdf.*; import java.io.*; public class PdfInfo { public static void mai...
2021-11-13, 755🔥, 0💬

What Is fop-2.2-bin.zip
What Is fop-2.2-bin.zip? I downloaded it from the Apache FOP Website. fop-2.2-bin.zip is the binary package of Apache FOP 2.2 in ZIP format. FOP (Formatting Objects Processor) is a print formatter driven by XSL formatting objects (XSL-FO). Below is the information about the fop-2.2-bin.zip file: Dow...
2023-06-11, 457🔥, 0💬

What Is fop.jar in fop-2.2-bin.zip
What Is fop.jar? I got it from the fop-2.2-bin.zip. fop.jar (2.2) is the JAR file for FOP 2.2, which is a print formatter driven by XSL formatting objects (XSL-FO). You can obtain fop.jar from the build folder of the fop-2.2-bin.zip file. Below is the information about the fop.jar (2.2) file: JAR Fi...
2023-06-11, 456🔥, 0💬

<< < 1 2 3 4 5 >   Sort: Date