Jump to content

Recommended Posts

Posted

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?

  • 2 weeks later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...