I want to use the standard bold Arial font in iText, but I would like to default to Arial Unicode if a character doe开发者_JS百科s not exist as bold. Is there a way to combine fonts in iText? I have s
I am converting HTML to PDF using iTextSharp but am having problems with styling. I am using iTextSharp version 5 and am able to style the 开发者_运维知识库tags using the following code:
string imgfile = @\"C:\\users\\me\\desktop\\test.jpg\"; Bitmap bmp = new Bitmap(imgfile); Bitmap bw = ConvertTo1Bpp(bmp); //make b+w
I am testing iText to generate a PDF that is composed of 8 images in a tiled format. I use JFreeChart to create a graph, which in turn is converted into an image by iText. The PDF generates fine, but
I\'ve been using the code sample from iText in Action (8.7.2)to deal with the \"cannot save\" issue with PDF forms and iTextSharp. It w开发者_运维问答as working fine, but recently the fix stopped work
While generating pdf reports programatically by using iTextSharp, I have to print the & in the report. But when i type this(&) in the pdf templates used by ItextSharp it is marked as an error.
I\'m using iText to generate a PDF document that consists of several copies of almost the same information.
I\'m programming a system that generates a PDF file containing user-submitted comments. I want to reduce the size of the comments, i.e. the font size of each annotation. I\'m using the Java version of
I need to have a border line 开发者_如何学Gofor the PdfPTable but not for the cells inside. Can anyone tell me how to do it?
I\'m using iTextSharp to merge multiple PDF files into a single Pdf. I found a code sampleor two on the web as to how to accomplish this task.