Merge pull request 'Bluesky/Twitter: New parameter added for rhe picture creation' (#1465) from heluecht/friendica-addons:images into 2024.03-rc

Reviewed-on: https://git.friendi.ca/friendica/friendica-addons/pulls/1465
pull/1466/head
Tobias Diekershoff 2024-02-17 07:47:00 +01:00
commit 810dc02dd4
2 changed files with 2 additions and 2 deletions

View File

@ -896,7 +896,7 @@ function bluesky_upload_blob(int $uid, array $photo): ?stdClass
$retrial = Worker::getRetrial();
$content = Photo::getImageForPhoto($photo);
$picture = new Image($content, $photo['type']);
$picture = new Image($content, $photo['type'], $photo['filename']);
$height = $picture->getHeight();
$width = $picture->getWidth();
$size = strlen($content);

View File

@ -308,7 +308,7 @@ function twitter_upload_image(int $uid, array $image, int $retrial)
$picturedata = Photo::getImageForPhoto($photo);
$picture = new Image($picturedata, $photo['type']);
$picture = new Image($picturedata, $photo['type'], $photo['filename']);
$height = $picture->getHeight();
$width = $picture->getWidth();
$size = strlen($picturedata);