Welcome Guest, Not a member yet? Register   Sign In
Images in CodeIgniter, how to?
#4

[eluser]JoostV[/eluser]
Yeah. But I doubt if it will you any good. You need to get the file contents from the image and echo them in your view, where they will be visible for everyone to see an grab. So, as long as you show them in an public accessible environment, placing images outside the webroot does not seem to make much sense.

Having said that:
Place images anywhere outside the root folder, e.g. ../images. Then, from your view, call a page that gets the contents of that file and echoes it (make sure you set the right content headers or the browser will not display it as an image!)
Code:
// Get data from file
$data = file_get_contents($filepath);

// Set mime type (image/png, image/gif, image/jpeg)
echo header('Content-Type: image/' . $mime_type);

// Echo file
echo $data;

This means every bit in every image is processed by your server's CPU, it could become quite a memory hog!


Messages In This Thread
Images in CodeIgniter, how to? - by El Forum - 12-05-2009, 04:20 AM
Images in CodeIgniter, how to? - by El Forum - 12-05-2009, 04:27 AM
Images in CodeIgniter, how to? - by El Forum - 12-05-2009, 12:51 PM
Images in CodeIgniter, how to? - by El Forum - 12-05-2009, 04:42 PM
Images in CodeIgniter, how to? - by El Forum - 12-05-2009, 06:50 PM
Images in CodeIgniter, how to? - by El Forum - 12-05-2009, 06:53 PM
Images in CodeIgniter, how to? - by El Forum - 12-05-2009, 07:15 PM
Images in CodeIgniter, how to? - by El Forum - 12-05-2009, 07:27 PM
Images in CodeIgniter, how to? - by El Forum - 12-05-2009, 07:35 PM
Images in CodeIgniter, how to? - by El Forum - 12-05-2009, 07:43 PM
Images in CodeIgniter, how to? - by El Forum - 12-05-2009, 08:08 PM
Images in CodeIgniter, how to? - by El Forum - 12-06-2009, 01:50 AM
Images in CodeIgniter, how to? - by El Forum - 12-06-2009, 06:03 AM
Images in CodeIgniter, how to? - by El Forum - 12-06-2009, 06:28 AM
Images in CodeIgniter, how to? - by El Forum - 12-06-2009, 06:45 AM
Images in CodeIgniter, how to? - by El Forum - 12-06-2009, 07:33 AM
Images in CodeIgniter, how to? - by El Forum - 12-06-2009, 09:01 AM



Theme © iAndrew 2016 - Forum software by © MyBB