Syntax
| SQL.CreateBMPfile(GraphicImage, FileSaveAs)
| ||||||
---|---|---|---|---|---|---|---|
Description
| Converts a graphic file to a standard format. If the GraphicImage type is a bitamp, icon, metafile or enhanced metafile, the target file is saved in the same format. If the type is JPEG or GIF, it is saved as a bitmap file.
| ||||||
See Also
| |||||||
Example
| Sub Main() If SQL.CreateBMPfile("c:\demo.gif", "c:\demo.bmp") Then Debug.Print "Succesvol geconverteerd!" End If End Sub | ||||||