Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. string imagePath = "http://zzazz.org/wp-content/uploads/2018/08/trend-micro-deep-security-logo-300x150.png";  
  2.     iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance(imagePath);  
  3.     img.Alignment = Element.ALIGN_CENTER; //sprawdz czy jest np ALIGN_RIGHT  
  4.     img.ScaleToFit(180f, 250f);  
  5.  
  6.     pdfdoc.Add(image);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement