PHP Class Thumbor\Url\BuilderFactory
global variable
$thumbnailUrlFactory = Thumbor\Url\BuilderFactory::construct(
'http://thumbor.example.com',
'secret'
);
elsewhere in your app
echo $thumbnailUrlFactory
->urlFrom('http://example.com/llamas.jpg')
->fitIn(320, 240)
etc
;
Afficher le fichier
Open project: 99designs/phumbor
Class Usage Examples
Méthodes publiques
Method Details
__construct()
public méthode
construct()
public static méthode
public url ( string $original ) : Builder |
$original |
string |
|
Résultat |
Builder |
|