What is wrong with this code ? The problem is that the is_empty method is called but is_image not.
$this->load->library('form_validation');
$this->form_validation->set_rules('userfile', 'image', 'callback_is_empty|callback_is_image');
Here is the is_image method
public function is_image()
{
echo 'Hello from is_image';
}