Next we create an ABCpdf Doc object.
When we add our image it will be scaled to fit the current rect
so it is important that we adjust the rect to reflect the
dimensions of our image. Here we assume a one to one ratio between
pixels and points which will give us a 72 dpi result when
printed.
using var doc = new Doc();
doc.Rect.Left = 50;
doc.Rect.Bottom = 25;
doc.Rect.Width = img.Width;
doc.Rect.Height = img.Height;
doc.AddImageObject(img, false);
doc.Save(Server.MapPath("image.pdf"));
Using doc As New Doc()
doc.Rect.Left = 50
doc.Rect.Bottom = 25
doc.Rect.Width = theImg.Width
doc.Rect.Height = theImg.Height
doc.AddImageObject(theImg, False)
doc.Save(Server.MapPath("image.pdf"))
End Using