resolved
here's the fix for anyone else who's images are not rotating properly
in the webassist/caching folder.... PG_CachedResize_Image.php
open that and find this (line 46-48 on mine)
$this->width = $info[0];
$this->height = $info[1];
$this->mime = $info['mime'];
replace those lines with this
if ($this->rotate_angle == 90 || $this->rotate_angle ==270) {
$this->width = $info[1];
$this->height = $info[0];
} else {
$this->width = $info[0];
$this->height = $info[1];
}
$this->mime = $info['mime'];