Warning: Creating default object from empty value in /www/wwwroot/sc35.com/blog/wp-content/plugins/paged-comments/paged-comments.php on line 31
‘Web Vision’for Category Archive - Wang
FV.Zone Project Code

国外开源项目网址

sourceforge http://www.sourceforge.net

java.net http://www.java.net

www.eclipse.org

www.opensource.org
Read More »

META标签使用

META标签,是HTML语言head区的一个辅助性标签。在几乎所有的page里,我们都可以看到类似下面这段html代码:

-----------------------------------------------

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

-----------------------------------------------

Read More »

PHP 图形处理函数库

使用本功能需要在编译 PHP 前先安装 GD library。

     Header ( "Content-type: image/gif" );
$im = imagecreate ( 400 , 30 );
$black = ImageColorAllocate ( $im , 0 , 0 , 0 );
$white = ImageColorAllocate ( $im , 255 , 255 , 255 );
imageline ( $im , 1 , 1 , 350 , 25 , $black );
imagearc ( $im , 200 , 15 , 20 , 20 , 35 , 190 , $white );
imagestring ( $im , 5 , 4 , 10 , "Graph TEST!!" , $white );
ImageGif ( $im );
ImageDestroy ( $im );
?&gt; 

Read More »