Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using this below Code i am Abel to convert a HTML text To PDF and my code can generate PDF File on particular location . but problem is...... i give font style in body tags so when PDF is generate i am not getting this font style effect in generate PDF ex.

 // Here On Body Tag I have given a Zurich BT font style
 StyleSheet styles = new StyleSheet();
 //styles.loadTagStyle("body", "font-family", "Zurich BT");
 styles.loadTagStyle("body", "font", "Zurich BT");

so here my font style is Zurich BT but i have just got plane simple text on generate PDF not get any effect on text.

i am using itextpdf-5.1.1 version and my code is....

            ByteArrayOutputStream baos = new ByteArrayOutputStream();   
            Document pdfDocument = new Document();

            Reader htmlreader = new StringReader("<html><head></head><body>"
                    + " <font> HELLO MY NAME IS JIMIT TANK </font> </html></body>");

            PdfWriter.getInstance(pdfDocument, baos);

            pdfDocument.open();

            // Here On Body Tag I am giving a Zurich BT font style
            StyleSheet styles = new StyleSheet();
            //styles.loadTagStyle("body", "font-family", "Zurich BT");
            styles.loadTagStyle("body", "font", "Zurich BT");

            ArrayList arrayElementList =    HTMLWorker.parseToList(htmlreader,styles);

            for (int i = 0; i < arrayElementList.size(); ++i) {
                Element e = (Element) arrayElementList.get(i);
                pdfDocument.add(e);
            }
            pdfDocument.close();
            byte[] bs = baos.toByteArray();
            String pdfBase64 = Base64.encodeBytes(bs); //output
            File pdfFile = new File("c:/pdfExample.pdf");
            FileOutputStream out = new FileOutputStream(pdfFile);
            out.write(bs);
            out.close();
share|improve this question

1 Answer

up vote 0 down vote accepted

Use iTextSharp Paragraph class and set font and style to it like this

Document doc = new Document(PageSize.A4);
Paragraph paraReportTitle = new Paragraph();
                //paraReportTitle.Font = new Font(Font.FontFamily.HELVETICA, 13f, Font.BOLD);
                paraReportTitle.Font = new Font(Font.FontFamily.HELVETICA, 8f, Font.NORMAL);

doc.Add(paraReportTitle);

Setting style to html will not work.

You can also use the BaseFont class in iTextSharp

share|improve this answer
ok but i want only Zurich BT font style on other........ – Jimit Tank Sep 30 '11 at 8:36
BaseFont class will help you see the link in the answer – Prasanth Sep 30 '11 at 8:43
yes but if i am correct then BaseFont will provide only selected font option and want Zurich BT font style only not any other. – Jimit Tank Sep 30 '11 at 8:54
You can set font for each paragraph like this paraReportTitle.Font = new Font(Font.FontFamily.HELVETICA, 8f, Font.BOLD); paraReportTitle.Add(new Chunk(@"Title 1:")); paraReportTitle.Font = new Font(Font.FontFamily.COURIER, 8f, Font.NORMAL); paraReportTitle.Add(new Chunk(@"Title 2:")); – Prasanth Sep 30 '11 at 9:05
You have to set it before the chunk where you need to apply it – Prasanth Sep 30 '11 at 9:07
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.