recalculate photo filesize when rotating an image
This commit is contained in:
		| @@ -278,10 +278,13 @@ class Photos extends \Zotlabs\Web\Controller { | ||||
| 	 | ||||
| 						$width  = $ph->getWidth(); | ||||
| 						$height = $ph->getHeight(); | ||||
| 						$data = $ph->imageString(); | ||||
| 						$fsize = strlen($data); | ||||
| 	 | ||||
| 						$x = q("update photo set edited = '%s', content = '%s', height = %d, width = %d where resource_id = '%s' and uid = %d and imgscale = 1", | ||||
| 						$x = q("update photo set edited = '%s', content = '%s', filesize = %d, height = %d, width = %d where resource_id = '%s' and uid = %d and imgscale = 1", | ||||
| 							dbesc(datetime_convert()), | ||||
| 							dbescbin($ph->imageString()), | ||||
| 							dbescbin($data), | ||||
| 							intval($fsize), | ||||
| 							intval($height), | ||||
| 							intval($width), | ||||
| 							dbesc($resource_id), | ||||
| @@ -294,10 +297,13 @@ class Photos extends \Zotlabs\Web\Controller { | ||||
| 	 | ||||
| 						$width  = $ph->getWidth(); | ||||
| 						$height = $ph->getHeight(); | ||||
| 						$data = $ph->imageString(); | ||||
| 						$fsize = strlen($data); | ||||
| 	 | ||||
| 						$x = q("update photo set edited = '%s', content = '%s', height = %d, width = %d where resource_id = '%s' and uid = %d and imgscale = 2", | ||||
| 						$x = q("update photo set edited = '%s', content = '%s', filesize = %d, height = %d, width = %d where resource_id = '%s' and uid = %d and imgscale = 2", | ||||
| 							dbesc(datetime_convert()), | ||||
| 							dbescbin($ph->imageString()), | ||||
| 							dbescbin($data), | ||||
| 							intval($fsize), | ||||
| 							intval($height), | ||||
| 							intval($width), | ||||
| 							dbesc($resource_id), | ||||
| @@ -310,10 +316,13 @@ class Photos extends \Zotlabs\Web\Controller { | ||||
| 	 | ||||
| 						$width  = $ph->getWidth(); | ||||
| 						$height = $ph->getHeight(); | ||||
| 						$data = $ph->imageString(); | ||||
| 						$fsize = strlen($data); | ||||
| 	 | ||||
| 						$x = q("update photo set edited = '%s', content = '%s', height = %d, width = %d where resource_id = '%s' and uid = %d and imgscale = 3", | ||||
| 						$x = q("update photo set edited = '%s', content = '%s', filesize = %d, height = %d, width = %d where resource_id = '%s' and uid = %d and imgscale = 3", | ||||
| 							dbesc(datetime_convert()), | ||||
| 							dbescbin($ph->imageString()), | ||||
| 							dbescbin($data), | ||||
| 							intval($fsize), | ||||
| 							intval($height), | ||||
| 							intval($width), | ||||
| 							dbesc($resource_id), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user