Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Experiments, add a method to the class https://github.com/opencart/opencart/blob/3567a9ac...
private function fixOrientationImage() {
if (!extension_loaded('exif')) {
exit('Error: PHP EXIF is not installed!');
}
$exif = exif_read_data($this->file, 0, true);
if (isset($exif['IFD0']['Orientation'])) {
switch($exif['IFD0']['Orientation']) {
case 3:
$this->rotate(180);
break;
case 6:
$this->rotate(-90);
break;
case 8:
$this->rotate(-180);
break;
}
}
}
$this->fixOrientationImage();
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question