You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I was wondering, is it possible to load an url into a ThumborUrl Class, to then perform other actions on it?
For example (pseudo code):
$filename = "//example.org/****thumbor-signature***/0x95:300x395/300x300/http://path-to-image.jpg";
$image = Thumbor\Url\Builder::construct(THUMBOR_SERVER, THUMBOR_SECRET, $filename);
echo$image; // will output the same as $filename;$image->resize(500,500);
echo$image; // will output //example.org/****NEW-thumbor-signature***/0x95:300x395/500x500/http://path-to-image.jpg
I suppose this is not possible, but (for me) it would be a nice add-on...
Thanks!
Ben
The text was updated successfully, but these errors were encountered:
Well depending on your thumbor configuration this should work with this library. We are using phumbor with the latest thumbor which has a loader configured with http fallback, and this works.
Hi,
I was wondering, is it possible to load an url into a ThumborUrl Class, to then perform other actions on it?
For example (pseudo code):
I suppose this is not possible, but (for me) it would be a nice add-on...
Thanks!
Ben
The text was updated successfully, but these errors were encountered: