[ 1981944 ] Report Loading Takes time

This commit is contained in:
Heng Sin Low 2008-07-26 08:21:22 +00:00
parent 1c792b2e0d
commit c7cf233ed0
1 changed files with 5 additions and 2 deletions

View File

@ -37,6 +37,10 @@ import com.lowagie.text.pdf.PdfWriter;
*/ */
public class Document { public class Document {
static {
FontFactory.registerDirectories();
}
private static void writePDF(Pageable pageable, OutputStream output) private static void writePDF(Pageable pageable, OutputStream output)
{ {
try { try {
@ -49,8 +53,7 @@ public class Document {
document, output); document, output);
writer.setPdfVersion(PdfWriter.VERSION_1_2); writer.setPdfVersion(PdfWriter.VERSION_1_2);
document.open(); document.open();
final DefaultFontMapper mapper = new DefaultFontMapper(); final DefaultFontMapper mapper = new DefaultFontMapper();
FontFactory.registerDirectories();
final float w = (float) pf.getWidth(); final float w = (float) pf.getWidth();
final float h = (float) pf.getHeight(); final float h = (float) pf.getHeight();
final PdfContentByte cb = writer.getDirectContent(); final PdfContentByte cb = writer.getDirectContent();