Articles in this section
Category / Section

How to convert TIFF to PDF in C#, VB

1 min read

How to convert small TIFF to PDF

You can get tiff images frame by frame using PdfBitmap class. Frames can be drawn using DrawImage method in PdfGraphics at the size of tiff image physicalDimension.

Please refer the code snippet to draw the tiff images frame by frame:

C#:

//get the image stream and draw frame by frame
using (var tiffImage = new PdfBitmap(docStream))
{
int frameCount = tiffImage.FrameCount;
 
for (int i = 0; i < frameCount; i++)
{
//add the page
var page = document.Pages.Add();
//Page settings
document.PageSettings.Margins.All = 0;
 
//create graphics
var g = page.Graphics;
tiffImage.ActiveFrame = i;
 
//draw tiff frame
g.DrawImage(tiffImage, 0, 0, tiffImage.PhysicalDimension.Width, tiffImage.PhysicalDimension.Height);
 
}
}

 

Sample Link:

https://www.syncfusion.com/downloads/support/directtrac/general/PdfTiffImage-215801194.zip

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied