How to resize wordpress image to fixed height and auto width

wordpress, wordpress-theming

Solution

As this was specific wordpress question and I found an answed, i will share it. When you add custom image size to functions.php, add 9999 to width and hardCrop to false.

add_image_size('slider-thumb-alt', 9999, YOUR_FIXED_HEIGT, false);

Problem

I have a WP slider with costum img sizes (fixed width and height) and i need that they would scale to fixed 330px height, and auto width. how to achieve this? thank you in advance!

Original source