Gallery wont help me here I am afraid. Root cause is the theme. My theme is telling WordPress to generate the following images:
$et_theme_image_sizes = array(
'578x420' => 'et-featured-first',
'578x208' => 'et-featured-second',
'578x280' => 'et-featured-category',
'287x208' => 'et-featured-third',
'160x160' => 'et-recent-post-image',
'319x160' => 'et-popular-post-image',
'639x160' => 'et-popular-post-big-image',
'240x240' => 'et-category-image',
'321x214' => 'et-recent-first-image',
'60x60' => 'et-tabs-image-small',
);
$et_page_templates_image_sizes = array(
'184x184' => 'et-blog-page-thumb',
'207x136' => 'et-gallery-page-thumb',
'260x170' => 'et-portfolio-medium-page-thumb',
'260x315' => 'et-portfolio-medium-portrait-page-thumb',
'140x94' => 'et-portfolio-small-page-thumb',
'140x170' => 'et-portfolio-small-portrait-page-thumb',
'430x283' => 'et-portfolio-large-page-thumb',
'430x860' => 'et-portfolio-large-portrait-page-thumb',
);
Basically images are called into the template by name, so the-picture-578×420.jpg would be called in a feature box.
The theme was loading full size images of 1680×1050 and displaying 20% through css. So I added one myself in functions.php:
add_image_size( 'featured-sdk', 1280, 400, array( 'center', 'top' ) ); // Hard crop center top
I guess this results in two questions
1) Can WP-Thumb deal with this?
The array seems to select the first image version that exists. Wont that be problematic?
2) Can I go about this the other way?
Meaning I just completely disable the .php array for image generation. Then use script X to loadup the exact function for just the picture I need. Is it hard to call a function from the admin panel somewhere?
ps I already completely removed the second array because I never use the additional page layouts such as Portofolio. I also went in WordPress and set the “medium” size to 0x0.