Hi
I'm trying to dl an img from web, scale it and then save it in base64 format
$hBmp = _GDIPlus_BitmapCreateFromMemory(InetRead("https://" & $dImage)) ;to load an image from the net
$hBitmap_Scaled = _GDIPlus_ImageResize($hBmp, 140, 200) ; Resizing the image to 140 x 200 pixels
$hBitmap = _GDIPlus_BitmapCreateHBITMAPFromBitmap($hBitmap_Scaled)
I have this code to handle the scaling, but I can't find any way to save the scaled img to base64
The only save img