I have 2 images A and B.
A has a resolution of 20x20.
B has a resolution of 100x215.
I want to resize B to have the same height as A. The width will resize down according to the aspect ratio. Thus, B should end up being approx. 9x20.
I can't hardcode any values since I have many images that differ in size.
Does anyone know how to perform the above using convert in one command, without calling any other programs such as identify?
Thanks!