Welcome Guest, Not a member yet? Register   Sign In
Image manipulation not working on localhost
#15

[eluser]IkoTikashi[/eluser]
[quote author="dsheetz" date="1233288714"]Notice how the image library is different for the $config array vs. the image_lib object... could this be indicative of a configuration error?[/quote]Hm strange, do you "autoload" the image_lib in config/autoload.php? Do you load it somewhere else? Here's my main controller:
Code:
<?php
class Main extends Controller
{
    function Main()
    {
        parent::Controller();
    }

    function index()
    {
        $config['image_library'] = 'gd2';
        $config['source_image'] = "/cvswebs/test/foto.jpg";
        $config['create_thumb'] = TRUE;
        $config['maintain_ratio'] = TRUE;
        $config['width'] = 75;
        $config['height'] = 50;
        #$config['dynamic_output'] = TRUE;

        $this->load->library('image_lib', $config);

        echo "<pre>";
        print_r($config);
        echo "</pre>";

        echo "<pre>";
        print_r($this->image_lib);
        echo "</pre>";

        if (!$this->image_lib->resize())
        {
            echo $this->image_lib->display_errors();
        }
    }
}
which prints everything just fine and produces a thumbnail of the image. This is in a drop-in standard installation of CI. (I'm on PHP5 btw)


Messages In This Thread
Image manipulation not working on localhost - by El Forum - 12-31-2008, 11:28 AM
Image manipulation not working on localhost - by El Forum - 12-31-2008, 02:22 PM
Image manipulation not working on localhost - by El Forum - 12-31-2008, 05:06 PM
Image manipulation not working on localhost - by El Forum - 01-27-2009, 03:08 AM
Image manipulation not working on localhost - by El Forum - 01-27-2009, 10:43 AM
Image manipulation not working on localhost - by El Forum - 01-27-2009, 11:18 AM
Image manipulation not working on localhost - by El Forum - 01-27-2009, 11:50 AM
Image manipulation not working on localhost - by El Forum - 01-27-2009, 03:19 PM
Image manipulation not working on localhost - by El Forum - 01-28-2009, 10:36 AM
Image manipulation not working on localhost - by El Forum - 01-28-2009, 10:56 AM
Image manipulation not working on localhost - by El Forum - 01-29-2009, 03:58 PM
Image manipulation not working on localhost - by El Forum - 01-29-2009, 04:11 PM
Image manipulation not working on localhost - by El Forum - 01-29-2009, 04:13 PM
Image manipulation not working on localhost - by El Forum - 01-30-2009, 02:27 AM
Image manipulation not working on localhost - by El Forum - 01-30-2009, 02:33 AM
Image manipulation not working on localhost - by El Forum - 03-28-2009, 07:53 PM
Image manipulation not working on localhost - by El Forum - 12-02-2009, 06:13 AM
Image manipulation not working on localhost - by El Forum - 12-03-2009, 02:10 AM
Image manipulation not working on localhost - by El Forum - 12-03-2009, 08:14 AM



Theme © iAndrew 2016 - Forum software by © MyBB