Getting top Image From the Gallery and printing out a thumbnail with Exact Dimensions

No need for plugins. Some simple code in your theme can do this job.

You can get any size image by passing an array of width and height for the size parameters, but to get a cropped image, you have to predefine it as an premade image size so that the crop gets created properly at upload time.

To do that, in your theme’s functions.php file, you need to add something like this:

function themename_setup() {
    add_image_size( 'themename-some-description-of-the-size', 100, 100, true );
}
add_action( 'after_setup_theme', 'themename_setup' );

That’s the width and height you want, and the “true” saying you want it to crop to the center of the image.

Now you need code in the Loop to pull either the Featured Image (if there is one) or the First Image from the gallery (if there’s no featured image). This code would go into The Loop, so that you’re getting it for the current post.

if ( has_post_thumbnail() ) {
        $thumb_id = get_post_thumbnail_id();
} else {
    $attachments = get_children( array(
        'post_parent' => get_the_ID(),
        'post_status' => 'inherit',
        'post_type' => 'attachment',
        'post_mime_type' => 'image',
        'order' => 'ASC',
        'orderby' => 'menu_order ID',
        'numberposts' => 1)
    );
    $attachment = array_shift($attachments);
    $thumb_id = $attachment->ID;
}

Finally, you need to display the resulting image:

echo wp_get_attachment_image($thumb_id, 'themename-some-description-of-the-size');

Simple. However, there’s one caveat: Your already uploaded images won’t have this size image created for them. So WordPress will pick the best fitting image and try to use that. This is not always ideal. Use a plugin like Regenerate Thumbnails after you create the code, and it will go through all your images and have WP regenerate the thumbnails, creating the proper image sizes for all of them.

Also remember when making your theme that this code is more of a guideline than code you should actually use. I wrote it to teach you how to do it yourself and to customize your theme, not to be copy-pasta.

You can find out more about image handling in themes here:
http://ottopress.com/2011/photo-gallery-primer/