Welcome Guest, Not a member yet? Register   Sign In
Image Manipulation Class - Imagemagick don't want to work, when with GD2 work's perfectly.
#5

[eluser]yanekpl[/eluser]
What do You mean by 'see if something is different'? different from what? Smile
and here is part of code where error is happening, but that's default from codeigniter.
Code:
/**
     * Image Resize
     *
     * This is a wrapper function that chooses the proper
     * resize function based on the protocol specified
     *
     * @access    public
     * @return    bool
     */
    function resize()
    {
        $protocol = 'image_process_'.$this->image_library;

        if (preg_match('/gd2$/i', $protocol))
        {
            $protocol = 'image_process_gd';
        }

        return $this->$protocol('resize');  //<-LINE 357
    }


Messages In This Thread
Image Manipulation Class - Imagemagick don't want to work, when with GD2 work's perfectly. - by El Forum - 06-25-2011, 06:10 AM



Theme © iAndrew 2016 - Forum software by © MyBB