cancel
Showing results for 
Search instead for 
Did you mean: 

Load Image File in BluePrism Data Item

SurajJadhav
Level 5
Hello Guys ,               I need some help i want to read image file (.jpeg,.png etc) from my downloads directory , into blueprism image data item. Is there any VBOs or any action provided to this . How can I do this is anybody tried this , if so please help me.   Thanks.
3 REPLIES 3

Denis__Dennehy
Level 15
I don't think that exists in a VBO.  A very quick internet search suggests this will be a one liner for you to create in your own code stage VBO - something line System.Drawing.Bitmap.FromFile(""yourfile.jpg"")

John__Carter
Staff
Staff
I don't think there is a ready made VBO, but it's only 1 line in a code stage ImageOutput = New Bitmap(FilePathInput)

SurajJadhav
Level 5
Thanks you guys Got it.