Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on February 15, 2023 8:13AM
Likes: 0
Replies: 3
Hello,
I need to pull images from a folder, transform it and upload it to another folder using python script.
I pulled and transformed the images but I have trouble saving to destination folder. upload_data takes binary data not image data. Other upload methods requires "local file path"
Anyway other method I can use?
Thank you
You could use some code similar to this sample code:
import dataiku, io from PIL import Image import numpy as np a = np.asarray(img) img1 = Image.fromarray(a,'RGB') buf=io.BytesIO() img1.save(buf, format='PNG') folder_handle = dataiku.Folder("3wglEqHl") folder_handle.upload_stream("/Monimage7.jpg", buf.getvalue())
This is about the uploading image in managed folder but How we can read the image present in the managed folder of Dataiku?
Please start a new thread.