How to use different featured image size for a custom post type?

This might help – Set featured image size for a custom post type,

Just add a new image size

add_image_size( 'companies_thumb', 120, 120, true);

Then in the post type template for companies you just call the thumb
you defined.

<?php the_post_thumbnail('companies_thumb'); ?>