2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
How to convert small TIFF to PDFYou 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: http://www.syncfusion.com/downloads/support/directtrac/general/PdfTiffImage-215801194.zip |
2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.