Sammi89
5/21/2015 - 8:39 AM

Drupal theming

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')
  ));	
?>