Image_WBMP
[ class tree: Image_WBMP ] [ index: Image_WBMP ] [ all elements ]

Source for file WBMP_sample.php

Documentation is available at WBMP_sample.php

  1. <?
  2.     require_once 'Images/WBMP.php';
  3.  
  4.     $a = new Image_WBMP();
  5.     $a->createFromFile('WBMP_sample.wbmp');
  6.  
  7.     $a->drawFigletText('WBMP test', 'xbriteb.flf', '1:1', IMAGE_XBM_BLACK, IMAGE_XBM_WHITE, 23, 45);
  8.  
  9.     $a->drawRectangle(0, 0, 99, 99, IMAGE_XBM_BLACK);
  10.  
  11.     header("Content-type: image/vnd.wap.wbmp; level=0");
  12.     $a->output();
  13.  
  14. ?>

Documentation generated on Mon, 11 Mar 2019 14:36:33 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.