Frederick V

Results 6 comments of Frederick V

I have this issue too, are there any workarounds?

I researched it a bit more yesterday too. It might be what you found, but since there is no option to close the file handle in the [gdiplus flat api...

apparently GdipDisposeImage() should also work for bitmaps, however even if i use that i still get the problem

here is an example of what im trying to do: ```nim import nigui app.init() var window = newWindow("minimal") window.width = 300.scaleToDpi window.height = 300.scaleToDpi var openImageButton = newButton("open") var controlsContainer...

I tried adding: ```nim # platform_impl.nim line 392 proc pGdipDisposeImage(bitmap: var pointer) = let status = GdipDisposeImage(bitmap) if status != 0: pCheckGdiplusStatus(status, "Failed to dispose of Image") # platform_impl.nim line...