Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.
Please keep in mind:
            // Resize?
            if(check_value($this->resize_width)) {
                $this->ImageResize = new ImageResize($this->working, $this->working, $this->resize_width);
                if(check_value($this->ImageResize->error)) {
                    $this->error = $this->ImageResize->error;
                    return false;
                }
            }
	            // Resize?
            $info = get_info($this->working);
            if($info['width']>640) {
                $this->resize_width = 640;
            }
            if(check_value($this->resize_width)) {
                $this->ImageResize = new ImageResize($this->working, $this->working, $this->resize_width);
                if(check_value($this->ImageResize->error)) {
                    $this->error = $this->ImageResize->error;
                    return false;
                }
            }