Typography.js - инструмент для визуальной работы с типографикой на странице
http://kyleamathews.github.io/typography.js/
require_once 'vendor/autoload.php';
use ColorThief\ColorThief;
$dominantColor = ColorThief::getColor($sourceImage);
use Grafika\Grafika;
$editor = Grafika::createEditor();
$editor->open( "path/to/jpeg/image.jpg" );
$editor->resizeExact( 200, 200 );
$editor->save( "path/to/edited.jpg", null, 90 );
function HelloWorld () {
return {
render: function (props) {
return h('h1', props.text);
// or
// return {type: 'h1', props: {}, children: [props.text]};
}
}
}
dio.createRender(HelloWorld)({text: 'Hello World'})