PDFsharp & MigraDoc Foundation
http://forum.pdfsharp.de/

How to Change Font size of Watermark Text
http://forum.pdfsharp.de/viewtopic.php?f=2&t=345
Page 1 of 1

Author:  dpsubi1 [ Fri Mar 21, 2008 6:34 am ]
Post subject:  How to Change Font size of Watermark Text

Hello,

How to change the font size of Watermark Text ?

I have been using the sample C# code (PDF Sharp)

However, I am not sure how I can change/reduce the font size of the Watermark text.

I tried changing the value of the emsize, but there is no changes in font sizes.

Quote:
string watermark = WatermarkText;
const int emSize = 140;


There is no issue with watermark. I just want to reduce the font size.

BTW, I am using the 3rd method.

Please let me know.

Thanks

Author:  robiman [ Mon Mar 24, 2008 4:32 pm ]
Post subject:  Re: How to Change Font size of Watermark Text

dpsubi1 wrote:
I tried changing the value of the emsize, but there is no changes in font sizes.

Quote:
string watermark = WatermarkText;
const int emSize = 140;


Well, it's pretty simple. The const "emSize" is not used for watermark size, even though it was declared (presumably) for such purpose. So you have to correct the following line:

Code:
path.AddString(watermark, font.FontFamily, XFontStyle.BoldItalic, 150, new XPoint((page.Width - size.Width) / 2, (page.Height - size.Height) / 2), XStringFormat.Default);


The "150" after XFontStyle.BoldItalic is the font size, so change this to "emSize" or just put in your value.

Perhaps the samples should also be corrected to avoid confusion?

Author:  dpsubi1 [ Tue Mar 25, 2008 3:51 am ]
Post subject: 

Wow! thanks it worked great.

Thanks a lot for your help.

Page 1 of 1 All times are UTC
Powered by phpBB® Forum Software © phpBB Group
https://www.phpbb.com/