⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 manipulate_text.php

📁 这是php专业项目实例开发一书的源代码,希望对大家有所帮助!
💻 PHP
字号:
<html>
<head>
</head>
  <body>
                 
 <?php
 	$img=ImageCreate(300,300);
 	$bgcolor=ImageColorAllocate($img,200,200,200);
 	$red=ImagecolorAllocate($img,255,0,0); 
 	$green=ImagecolorAllocate($img,0,255,0); 
 	$blue=ImagecolorAllocate($img,0,0,255); 
 	$grey=ImagecolorAllocate($img,50,50,50); 
    	$black=ImagecolorAllocate($img,0,0,0); 
        for ($i=0;$i<6;$i++)
          {
   		ImageChar($img,$i,20,20+($i*20),"S",$red);
                $height[]=Imagefontheight($i);
                $width[]=Imagefontwidth($i);
          }
        /*
         	 RGB Red = 0..255 , Green = 0..255 , Blue = 0..255.
        */
        ImageSetPixel($img,50,50,$pixelcolor);
  	ImagePNG($img,"pic.png");
        ImageDestroy($img);
        for ($i=0;$i<6;$i++)
            {
             echo "font ".$i." height=".$height[$i]."<br>";
            }
                                                                                          
   ?>
 <img src="pic.png" border=0>
 </body>
 </html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -