Create default imagecache preset programmatically - Drupal 6

Applies to imagecache 2.x

<?php
/**
* Implementation of hook_imagecache_default_presets().
*/
function mymodule_imagecache_default_presets() {
 
$presets = array();
 
$presets['ubs_forum_user_picture'] = array (
   
'presetname' => 'ubs_forum_user_picture',
   
'actions' =>
    array (
     
0 =>
      array (
       
'weight' => '0',
       
'module' => 'imagecache',
       
'action' => 'imagecache_scale_and_crop',
       
'data' =>
        array (
         
'width' => '38',
         
'height' => '38',
        ),
      ),
    ),
  );
  return
$presets;
}
?>