photonbuddy Posted March 29, 2008 Posted March 29, 2008 Hi All, Some time ago I wrote myself a little wallpaper changer program, using 'topng' to do the imgae conversion from JPG to BMP. I saw a post today using the new GDIPlus routines to do this conversion: Func _Convert2BMP ($inputfile, $outputfile) _GDIPlus_StartUp() $imh = _GDIPlus_ImageLoadFromFile($inputfile) $clsid = _GDIPlus_EncodersGetCLSID("BMP") _GDIPlus_ImageSaveToFileEx($imh, $outputfile, $clsid) _GDIPlus_ShutDown() EndFunc This bit of code failes on the FileSetTime() function: _Convert2BMP($sFile,$sFileb) FileSetTime($sFile,"",0) If I comment out the _Convert2BMP line, and uncomment the topng line, it works as expected. I tried updating to the latest beta, but it still does it. Any ideas?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now