30-11-21 03:51 PM
01-12-21 11:03 AM
01-12-21 12:52 PM
01-12-21 01:25 PM
Hi Mark,
There's nothing I can think of "out-of-the-box" but I've been able to find a simple VBO method you can try.
So I added an action to the BP VBO "Utility - Image Manipulation".
- I created 2 image based data items, effectively Input and Output.
- Upload your image to the input data item
- Create a code stage, with the Input as an input and the Output as an output
- Add the following to the code tab
Dim bmp As Bitmap = New Bitmap(Input)
bmp.RotateFlip(RotateFlipType.Rotate90FlipNone)
Output = bmp
You'll need to modify it to figure out how to get the image in and out, but it's the start of what could be a useful action.
I got the info from https://www.homeandlearn.co.uk/extras/image/image-rotation.html
Thanks
01-12-21 02:38 PM