i want to export a file in RTF format.
everything works except for images.
Code: Select all
WriteStringN(0, "\qc{\*\shppict{\pict{\*\picprop\jpegblip}", #PB_UTF8)
;Bin2Hex image here
WriteStringN(0, "}}\par\par", #PB_UTF8)
But my problem is that I need to transform images (png or jpeg) into hex (bin2hex), but I do not know how.
I need the image file is physically loaded, not from memory.
Thnx