コード例 #1
0
ファイル: Mail.php プロジェクト: rendix2/QW_MVS
 private function createImageOfTextEmail()
 {
     $image = new Images(100, 50, FALSE);
     $image->setText(1, new Point(50, 25), $this->to, FALSE, new Color(255, 255, 255));
     $image->setBackgroundColor(new Color(0, 0, 0));
     header('Content-Type: image/png');
     return $image->toPNG();
 }
コード例 #2
0
ファイル: Point.php プロジェクト: rendix2/QW_MVS
 public final function isInImage(Images $images)
 {
     return $this->getX() < $images->getWidth() && $this->getY() < $images->getHeight();
 }