Hi all,
I am wondering if there is some code or component that can turn a base64 string into an image in grasshopper. I have this code I am running in python on vscode and I am trying to send that base64 string through to rhino compute which will basically get me an image and turn it into a mesh.
img = cv2.imread('./tile_60293_39317.png')
png_img = cv2.imencode('.png', img)
b64_string = base64.b64encode(png_img[1]).decode('utf-8')
Thanks