VeryPDF PDF to TIFF Extractor provides you with several versions – GUI and COM, and both of them could be used to help you extract images from PDF to TIF, fax TIF and JPG, etc. by Windows users and developers separately. COM/SDK version could help programmers realize more additional functions, and this page aims on showing you how VeryPDF PDF to TIFF Extractor COM/SDK could do.
VeryPDF PDF to TIFF Extractor COM/SDK is a kind of basic development kit for developers which works on various programming platforms.
Operating Systems:
Windows 2000, XP, Vista, 7, 10, 11, Windows Server 2003, 2008, 2008 R2 and later systems, both 32 Bit and 64 Bit
Programming Languages:
C#, VB .NET, J# via .NET, Java via JNI, MS Visual Basic, Borland Delphi, MS Office products such as Access and C++ via COM, C and C++ via native C.
And in the following examples, you will know how VeryPDF PDF to TIFF Extractor COM/SDK could be applied in specific platforms.
Sample: Visual C++
void main(int argc,char *argv[])
{
if(argc != 3)
{
printf("Usage: input.pdf output.tif");
return;
}
PDFExtractToTIFF_SetLicenseKey("XXXXXXXXXXXXXXXXXXX");
int iBeginTick,iEndTick;
PDFExtractToTIFF_SetDPI(300,300);
PDFExtractToTIFF_SetOptions("AutoInvertBWImage","1");
PDFExtractToTIFF_SetOptions("AutoMergeStrips","1");
PDFExtractToTIFF_SetOptions("RemoveThumbnail","1");
iBeginTick = GetTickCount();
int pagecount = PDFExtractToTIFF(argv[1],argv[2],0,NULL,NULL);
iEndTick = GetTickCount();
printf("Page Count(1): %d, time = %d ms\n", pagecount,iEndTick-iBeginTick);
printf("Please press any key to continue ...\n");
_getch();
PDFExtractToTIFF_SetDPI(200,200);
iBeginTick = GetTickCount();
pagecount = PDFExtractToTIFF(argv[1],argv[2],1,NULL,NULL);
iEndTick = GetTickCount();
printf("'%s' Page Count(1): %d, time = %d ms\n",argv[2],pagecount,iEndTick
-iBeginTick);
}
Sample: Visual Basic
Private Sub bconvert_Click()
' only PDF Files
cdialog.Filter = "PDF Files (*.PDF)|*.PDF"
' if ok
cdialog.ShowOpen
' if file specified
If cdialog.FileName <> "" Then
' Application exe path and add filename for txt
TIFFFile = App.Path + "\multipage.tif"
' Txt file exist ?
If Dir(TIFFFile) <> "" Then
' ok delete it
Kill TIFFFile
End If
PDFExtractToTIFF_SetLicenseKey "XXXXXXXXXXXXXXXXXXXXXX"
PDFExtractToTIFF_SetOptions "RemoveThumbnail", "1"
PDFExtractToTIFF_SetOptions "ExportJPG", "1"
PDFExtractToTIFF_SetOptions "AutoMergeStrips", "1"
PDFExtractToTIFF cdialog.FileName, TIFFFile, 1, "", ""
'PDFExtractToTIFF cdialog.FileName, TIFFFile, 0, "", ""
End If
End Sub
Examples based on Visual C++ and Visual Basic are as above. To know more of them, just download trial version of VeryPDF PDF to TIFF Extractor COM/SDK from Try and Buy
Features of VeryPDF PDF to TIFF Extractor COM/SDK