How easy is it to add the API calls of the FLY SDK?
FLY SDK is a very powerful conversion engine yet simple to integrate into your application code. You just need to customize your conversion profile (.ini) and then hook into the engine. Only two API calls are needed to convert to any of the vector or bitmap output formats, Below are some examples:
Convert 4dbar.ps to 4dbar.wmf using the ps2xxx.ini configuration file
VgPsLoadOptions(PS2XXX, “ps2xxx.ini”);
VgPsConvert(“4dbar.ps”, “4dbar.wmf”, PWMF, NULL);Convert 4dbar.pdf to 4dbar.png using the pdf2xxx.ini configuration file
VgPsLoadOptions(PDF2XXX, “pdf2xxx.ini”);
VgPsBitmapConvert(“4dbar.pdf”, “4dbar.png”, PNG, NULL);Convert 4dbar.emf to 4dbar.svg using the emfxxx.ini configuration file
VgPsLoadOptions(EMF2XXX, “emf2xxx.ini”);
VgEmfFileFlowTo(“4Dbar.emf”, SVG, “4Dbar.svg”);
Posted in: Developers, QA





































