Drupal theming
<?php
// Render image programatically with style
print theme('image_style', array(
'style_name' => 'desthumb',
'path' => 'public://<path_of_image>',
'getsize' => TRUE,
'attributes' => array(
'class' => 'thumb',
'width' => '150',
'height' => '162')
));
?>