Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Readme.txt | 2013-08-30 | 600 Bytes | |
Converting API 1.0.zip | 2013-08-30 | 6.4 kB | |
Converting API 1.0 Source.zip | 2013-08-30 | 43.2 kB | |
Totals: 3 Items | 50.2 kB | 0 |
To Use: Add BICCOnv.dll as a Reference Add "Imports BICConv.conv" Dim a new instance of BICConv.conv Variables: ext = The image format to convert to as Imaging.ImageFormat imageloc = Location of image(s) to convert saveloc = Location and name to save the converted image(s) to Format: Instancename.convert(ext, imageloc, saveloc) Examples: Dim Convert as new BICConv.conv Convert.convert(Imaging.ImageFormat.Jpeg, "C:/Images/Image.jpg", "C:/ConvertedImages/NewImage.jpg") Dim Convert as new BICConv.conv Convert.convert(Imaging.ImageFormat.Jpeg,Textbox1.Text, Textbox2.Text)