Mike Lewis
Programmer
Here's something that might be of interest.
I sometimes need to convert GIFs and JPEGs to BMPs. I've always used a utility like Paintshop Pro to do that. But I've just realised you can do it quite easily in VFP:
Mike
__________________________________
Mike Lewis (Edinburgh, Scotland)
My Visual FoxPro site: www.ml-consult.co.uk
I sometimes need to convert GIFs and JPEGs to BMPs. I've always used a utility like Paintshop Pro to do that. But I've just realised you can do it quite easily in VFP:
Code:
loPic = LOADPICTURE("MyImage.GIF")
SAVEPICTURE(loPic, "MyImage.BMP")
Mike
__________________________________
Mike Lewis (Edinburgh, Scotland)
My Visual FoxPro site: www.ml-consult.co.uk