PHP code example of gregwar / tex2png
1. Go to this page and download the library: Download gregwar/tex2png 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/ */
gregwar / tex2png example snippets
// This will create a formula and save it to sum.png
Tex2png::create('\sum_{i = 0}^{i = n} \frac{i}{2}')
->saveTo('sum.png')
->generate();
Tex2png::create('\sum_{i = 0}^{i = n} \frac{i}{2}')
->generate();
// The filename will be choosen using an hash of the formula and
// the image density. (file name will look like cache/tex/3/0/2/e/6/8febefe7aaed9eeb8abf09070d10e02e93e.png)
Tex2png::create('\sum_{i = 0}^{i = n} \frac{i}{2}', 300)
->generate();