Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to 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;
}
}