pbm-scale.php 512B

123456789101112131415161718
  1. <?php
  2. require_once(__DIR__ . "/../vendor/autoload.php");
  3. use Mike42\GfxPhp\Image;
  4. // Write original back
  5. $img = Image::fromFile(dirname(__FILE__). "/resources/5x7hex.pbm");
  6. $img -> write("font-original.pbm");
  7. // Scale a black and white image
  8. $img = Image::fromFile(dirname(__FILE__). "/resources/5x7hex.pbm");
  9. $img2 = $img -> scale(40, 4);
  10. $img2 -> write("font-small.pbm");
  11. $img = Image::fromFile(dirname(__FILE__). "/resources/5x7hex.pbm");
  12. $img3 = $img -> scale(160, 14);
  13. $img3 -> write("font-large.pbm");