How to change image

Permalink
I have thumbnail image and upload image.
When upload image is changed, how to display thumbnail image ?

<table>
   <tbody>
      <tr>
         <td >
         <?php
            $ih = Loader::helper('image');
            $image = File::getByID(1);
            $thumbnail = $ih->getThumbnail($image, 50, 50, true);
            ?>
            <img src="<?php echo $thumbnail->src; ?>">
         </td>
         <td>
            <?php
               $bf = File::getByID(1);
               $al = Loader::helper('concrete/asset_library');