Tagged Questions
0
votes
1answer
34 views
How to avoid duplicate font resources?
I have some code that uses iTextSharp's PdfSmartCopy class to combine multiple smaller PDF files into one big one:
FileStream outStream = new FileStream(outputFilename, FileMode.Create, ...
0
votes
1answer
89 views
iTextSharp: Convert PdfObject to PdfStream
I am attempting to pull some font streams out of a pdf file (legality is not an issue, as my company has paid for the rights to display these documents in their original manner - and this requires a ...
0
votes
1answer
21 views
Fallback font with iTextSharp
I'm using iTextSharp to create PDF:s. I have a small problem that some glyphs are missing from some of the fonts the user can use. Is it possible to have a fallback font or a font stack like you do in ...
0
votes
1answer
136 views
iTextSharp setFieldProperty returns false
My code sets text into the fields no problem, but when I try to change the font it returns false. I tried some other field properties, like text size with the same result. What am I doing wrong?
...
2
votes
0answers
263 views
iTextSharp does not render Custom urdu font
I am using custom Urdu Font Jameel Noori Nastaleeq with iTextSharp but it is not showing text at all. It shows text when I use built-in forms like times.ttf etc.
Code is given below:
private void ...
0
votes
1answer
317 views
Does itextsharp supports courier new font or any other registered font in c#
I have pdf template ready with me.On which write values matching keys on pdf.Need to set different font and font size based on requireemnt Using itextsharp(pdfstamper).
But I want to set various ...
0
votes
1answer
124 views
Why aren't my fonts getting registered?
I have a program using iTextSharp that includes the code
FontFactory.RegisterDirectories();
foreach (string fontname in FontFactory.RegisteredFonts)
{
Log.Info("**** Found registered font: " + ...
0
votes
0answers
557 views
Changing PDF font size in iTextSharp
Following is the function I am writing to create PDF using iTextSharp.
Let me explain the function ...
I am here creating a PDF file from the another Template PDF file. The template PDF file is sent ...
7
votes
3answers
4k views
iTextSharp to print a gridview
I use iTextSharp to print a grid view but I face some problems:
No arabic characters appears at all.
The direction is LTR and I wany it RTL instead.
Some columns in the gridview are templatefields ...
1
vote
1answer
470 views
Font displayed differently in PDF and HTML
I am currently working on a web app to convert HTML to PDF (I am using iTextSharp to convert).
I have noticed a problem with the fonts though. When I generate a font with 12px in HTML and in PDF, the ...
1
vote
1answer
1k views
embed font into pdf using itextsharp
I am trying to embed a font using itextsharp 5.2.1.0, but am getting errors. the font is KozGoPro-Light.otf which after doing a bit of research is a japenese font. I have tried the following...
...
0
votes
1answer
303 views
Why is copying a PDF with iText un-embedding some fonts?
I'm having some problems with iText. (Specifically, iTextSharp.) I'm trying to split a single large PDF file into a bunch of smaller ones. That's not the issue; that works.
What I'm finding is that ...
0
votes
0answers
2k views
embed font with iTextSharp
I am having problems embedding a font using iTextSharp.
Basically I have a pdf document as a template with several text fields. 3 fonts are used, which need to be embedded, ITCCharterCom-Regular, ...
0
votes
2answers
700 views
iTextSharp: Why when adding a image to a pdf page the text font is different?
I use Helvetica font and 14 px size for text. The problem is that if a page does not have any image on it the text is very clear, but in a page with at least 1 image the text is getting a little bold. ...
1
vote
1answer
2k views
ItextSharp (Itext) - set custom font for paragraph
I am trying to set custom font to Paragraph, but I can't make it work.
I tried setting .Font= , but it only works size-wise, but it ignores font. Could you please assist?
...
0
votes
1answer
531 views
Re-using a font object in iTextSharp
I am having trouble trying to define an iTextSharp Font object that I can re-use throughout a class.
My first attempt was to use the FontFactory.GetFont method in 2 private methods that create ...
0
votes
1answer
1k views
How to subset the fonts used in a pdf? (with iTextSharp)
I generated a pdf report with ASP.NET + iTextSharp.
I used several types of fonts in it, each font applied to a word or 2 for art reasons.
So the file is large.
How can I only embed the fonts I ...
4
votes
1answer
4k views
Set different parts of a form field to have different fonts using iTextSharp
I'm not sure that this is possible but I figured it would be worth asking. I have figured out how to set the font of a formfield using the pdfstamper and acrofields methods but I would really like to ...
1
vote
1answer
592 views
Get bytearray of a font in C#
I'm using iTextSharp at the moment and I would like to use a custom font.
Here's what I have so far:
PrivateFontCollection fonts;
FontFamily family = LoadFontFamily("TheFont.ttf", out fonts);
var ...
1
vote
3answers
759 views
Using iTextSharp to save to file the fonts used in a PDF file
This is pretty much a duplicate of this unanswered question, but hopefully someone in the know is watching now and can be helpful.
I'm looking for the ability have some .NET code extract the font ...
10
votes
2answers
3k views
Get list of supported fonts in ITextSharp
I'm working with ITextSharp for a project and am looking for a reasonable way to get a string list of different fonts it has available for use.
I thought maybe I could just use reflection and loop ...
0
votes
1answer
267 views
iTextSharp Crashes with a StackOverflowException when getting a font
iTextSharp really, really doesn't like it when I try to create Fonts:
FontFactory.GetFont(Font.HELVETICA, 12)
This gives me a user-friendly StackOverflowException. So I tried this:
new ...
0
votes
1answer
1k views
Itextsharp error
I am trying to write a form to help users make canned pdfs
im working with Itextsharp.dll and im walking through the tutoral HERE and im getting an error that seems to be over the keyword "FONT"
if ...