Images Rotation in the template

Hi everyone, I need to rotate some data columns setted as images, in the template that I have to send by mail, but unfortunately, it seems that in google docs this is not possible or I haven’t found anything about it…
Could anyone tell me if it is possible and how to do it?
Thanks for your help

This might be helpful.

https://www.googlecloudcommunity.com/gc/AppSheet-Q-A/Constrain-Image-Size-on-Word-Document-Template-with-Table/td-p/394605

The commands are:

  • convert original.jpg -rotate -90 new.jpg
    Rotate the image to the left (anticlockwise)

  • convert original.jpg -rotate 90 new.jpg
    Rotate the image to the right (clockwise)

1 Like

Thanks for the reply but… I’m not sure I understand :roll_eyes:

Can you explain me how these commands works?

AppSheet does not provide any tools to rotate or otherwise manipulate image content.

1 Like

@Pelatone73 Sorry for late reply, haven’t seen yours. Please open the link. I’m suggesting to use an external program outside AppSheet which is ImageMagick. You can control ImageMagick completely from a CLI or a script that you can run on your image folder.

1 Like