PHP code example of masokky / quotemaker
1. Go to this page and download the library: Download masokky/quotemaker library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
masokky / quotemaker example snippets
asokky\QuoteMaker;
try{
$text = "the cruelest crime is giving false hope without love";
(new QuoteMaker)
->setBackgroundFromUnsplash(["b353e61a07cc0068080258kc0294ks85042f2560d6223366500a2aa30ff28052"],"heart")
->quoteText($text)
->watermarkText("Mas Okky")
->toFile("result.jpg");
}catch(Exception $e){
echo $e->getMessage();
}