This is a little over my head so i was wondering can someone convert the image lib
https://github.com/EllisLab/CodeIgniter/blob/develop/system/libraries/Upload.php
so that you can pass it upload $config and an image in a var and it return that images data() properties?
id find this very useful and im sure others would
e.g.
$this->load->library(‘upload_properties’, $config);
and it output like
$image_data[$i] = $this->upload_properties->data();
so that a files properties could be got without running the upload process
