├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── example ├── Ubuntu-Medium.ttf ├── demo.php ├── destination.jpg └── source.jpg └── src └── NMC └── ImageWithText ├── Image.php └── Text.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcteam/image-with-text/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcteam/image-with-text/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcteam/image-with-text/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcteam/image-with-text/HEAD/composer.json -------------------------------------------------------------------------------- /example/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcteam/image-with-text/HEAD/example/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /example/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcteam/image-with-text/HEAD/example/demo.php -------------------------------------------------------------------------------- /example/destination.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcteam/image-with-text/HEAD/example/destination.jpg -------------------------------------------------------------------------------- /example/source.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcteam/image-with-text/HEAD/example/source.jpg -------------------------------------------------------------------------------- /src/NMC/ImageWithText/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcteam/image-with-text/HEAD/src/NMC/ImageWithText/Image.php -------------------------------------------------------------------------------- /src/NMC/ImageWithText/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcteam/image-with-text/HEAD/src/NMC/ImageWithText/Text.php --------------------------------------------------------------------------------