Let us understand this better. The software you use can't work with image files, but it can take an image stored in an SQLite database?
Do you know how images are stored there?
You've come to a VFP forum, neither an SQLite nor a VPF forum. Unless you have a typo, but I think you literally mean VPF vecor map images, that's what I find VPF files are, and in context of vector gif or ppt that matches the topic of vector graphics.
Well, if you download and install SQLite you could find out how images are stored in there. Generally speaking databases are not image storages per se, images are foreign objects for databases and only treatable as a "binary large object" (blob), which is just a fancy way to say that databases just store image file bytes as is (and also any other file formats), with no changes.
The only way that your software would depend on SQLite would be if it is hardwired to take an image from some specific blob field of some specific table within a SQLite database.
So you wouldn't need to convert an image to an SQLIte database file, you would need to know what table and field name your softwre expects to find in an SQLite database, create such an empty database and store the image there. I wonder if it wouldn't be easier to change the software to take a file instead of needing SQLite as vehicle to retrieve the image, because what it will get from the SQLite database is just the same exact blob or bytes as are stored in the image file. There's no conversion done, there's a storage, an embedding of the file within a blob field of an SQLite database.
To say more, we'd need to know more, i.e. have a sample SQLite databse form which your software can find images and then inspect that with means of an SQLite driver. But I'd rather do this from SQLite itself, not VFP. It would just be one more level of indirection to work with VFP to inspect an SQLite databse file, if SQLite is all you need to find out structure and data. You can do this without VFP at all, because the SQLite software is free and documented and you can find out what's in an SQLIte database file, ie. which tabes, how they are defined (which fields they have) and look for blob fields in them, where images would be stored, most probably.
I doubt that SQLite has a specific field for images, even less so specifically for vector graphics formats. It will just store it and thus embed it. SQLite is the simplest database aside from even simpler XML or CSV based data, which would also only embed something binary as is and not convert it, so you're looking along a wrong thought of conversion and therefore don't [tt][/tt]find anything.
Images are not converted to database formats, databases are genrally storing data, also files, and that is not a conversion, just storage/embedding into a database file.
Chriss