ASP教程之ShotGraph一般的绘图的道理
ASP脚本是采用明文(plaintext)方式来编写的。ShotGraph能在以下的情况中利用:[*]VisualBasic
[*]VBScript
[*]VisualBasicforapplications(VBA),Word,Excel,etc.
[*]ActiveServerPages(ASP)enginewithInternetInformationServer
[*]PerlforWindows
[*]others
ShotGraphCOOL代码:
[*]上载文件
[*]计数器
[*]画GIF动绘图形
[*]绘图形
我们来先来复杂的:Stepbystep
[*]起首创建一个工具"shotgraph.image".
[*]利用CreateImage办法。
[*]利用SetColor办法一次大概屡次来界说绘图要利用的色彩。
[*]扫除你图区中的一切内容,需要时利用FillRect广泛以为办法.
[*]利用无效的办法绘图.
[*]利用GifImage函数.你的丹青就完成了!
上面的是一个复杂的例子来讲如何用shotgraph绘图。
Thesizeoftheimageis201x201.VBScript中的代码:
Creatingtheobjectsetobj=CreateObject("shotgraph.image")size=201CallingtheCreateImagemethodobj.CreateImagesize,size,4Set4colorsfordrawingobj.SetColor0,255,255,255obj.SetColor1,0,0,0obj.SetColor2,255,108,0obj.SetColor3,0,0,204Crearingthepaintingareawithcolor0obj.SetBgColor0obj.FillRect0,0,size-1,size-1Color0willbeusedfordrawingobj.SetDrawColor1Drawingthelineobj.Linesize-1,0,0,size-1Color2willbeusedforfillingobj.SetBgColor2Drawthebigcircleobj.Ellipse5,5,size-6,size-6Color2willbeusedforfillingobj.SetBgColor3Drawthesmallcircleobj.Ellipse5,(size-5)/4,size/2,(size-5)*3/4Createtheimagefilenamedtest.gifobj.GifImage0,1,"test.gif"上面是在ASP和PERL中的代码:
ASPResponse.ContentType="image/gif"setobj=Server.CreateObject("shotgraph.image")size=201obj.CreateImagesize,size,4obj.SetColor0,255,255,255obj.SetColor1,0,0,0obj.SetColor2,255,108,0obj.SetColor3,0,0,204obj.SetBgColor0obj.FillRect0,0,size-1,size-1obj.SetDrawColor1obj.Linesize-1,0,0,size-1obj.SetBgColor2obj.Ellipse5,5,size-6,size-6obj.SetBgColor3obj.Ellipse5,(size-5)/4,size/2,(size-5)*3/4img=obj.GifImage(0,1,"")Response.BinaryWriteimgPerl$obj=CreateObject("shotgraph.image")$size=201$obj->CreateImage($size,$size,4)$obj->SetColor(0,255,255,255)$obj->SetColor(1,0,0,0)$obj->SetColor(2,255,108,0)$obj->SetColor(3,0,0,204)$obj->SetBgColor(0)$obj->FillRect(0,0,$size-1,$size-1)$obj->SetDrawColor(1)$obj->Line($size-1,0,0,$size-1)$obj->SetBgColor(2)$obj->Ellipse(5,5,$size-6,$size-6)$obj->SetBgColor(3)$obj->Ellipse(5,($size-5)/4,$size/2,($size-5)*3/4)$obj->GifImage(0,1,"test.gif")</p>ASP脚本是采用明文(plaintext)方式来编写的。 它可通过内置的组件实现更强大的功能,如使用A-DO可以轻松地访问数据库。 Session:这个存储跟客户端会话过程的数据,默认20分钟失效 运用ASP可将VBscript、javascript等脚本语言嵌入到HTML中,便可快速完成网站的应用程序,无需编译,可在服务器端直接执行。容易编写,使用普通的文本编辑器编写,如记事本就可以完成。由脚本在服务器上而不是客户端运行,ASP所使用的脚本语言都在服务端上运行。 接下来就不能纸上谈兵了,最好的方法其实是实践。实践,只能算是让你掌握语言特性用的。而提倡做实际的Project也不是太好,因为你还没有熟练的能力去综合各种技术,这样只能使你自己越来越迷糊。 哪些内置对象是可以跳过的,或者哪些属性和方法是用不到的? 我就感觉到ASP和一些常用的数据库编程以及软件工程方面的思想是非常重要的。我现在也在尝试自己做网页,这其中就用到了ASP,我想它的作用是可想而知的。 下面简单介绍一下我学习ASP的方法,希望对想学习ASP的朋友有所帮助... 兴趣爱好,那么你无须学编程,申请一个域名和空间,在网上下载一些免费开源的CMS系统,你不用改代码,只须熟悉它们的后台操作,像office一样简单方便,很快就能建一个站点,很多站长都是这样做的
页:
[1]