该图形库使用了 DHTML 和 Javascript 技术,它可以画线,圆,椭圆,折线,多边形,矩形。对于一个不太了解 Javascript 的人来说使用这个图形库也是非常容易的,另外,使用这个图形库画出的图形是完全被优化到像素级的!
在 HTML 中并没有提供类似于线、圆、椭圆或其它非矩形的图形表现元素。在工作区中,我们可以利用、并设置具有背景颜色的 Div (或 Layer )元素,并且把这些 Div 元素缩小到与像素相似的大小,每一个 Div 元素代表了一个像素,然后用 Div 元素在网页上进行绘制。我们在使用这些 Div 模型来画矢量图形的时候,要尽可能避免一些冗余的接连处,看下面的图:
从左至右,最左边的是最不好的画法,仔细看一下会发现阶梯状的每一行的连接处都会有一个 Div 连接,这个 Div 是没有用的,应该被删除;中间的画法已经很不错了,但应该再优化一下,以第一行为例:用三个 Div 表现水平的一行是多余的,应合为一个,同样垂直方向的 Div 也应合并(例如阶梯的末尾)。
按 Walter Zorn 所言,在画矢量图形时为获得更好的性能,并尽可能避免上述的一些冗余,他用了最好、最快速的算法,只用最少、最必要的 Div 元素来绘制图形。
需要说明的是,不要把这个图形库与用 Java 语言或其它语言开发的图形应用程序相比较,要知道,受基本的 HTML 和浏览器约束,采用 Javascript 脚本语言创建 Div 元素是非常慢的,在这里能达到图形绘制的最优化都已经是最好的结果。在使用这个图形库时,所绘制的图形像素最好不要超过 600 - 1000 像素。
是否应该选择 SVG? 目前具有 SVG 能力的浏览器或使用 SVG 插件的浏览器仍然是少数,所以如果你要画一些简单的矢量图形,使用这个矢量图形库还是一个不错的选择。
说明:如果在网页全部加载完成后,使用这个矢量图形库进行绘制,在 Opera 版本 7 以前的浏览器中不会执行, Netscape 版本 4 也不会执行。相反,当 HTML 页面正在被解析时, 使用这个图形库进行绘制是全部浏览器均能做到的。
函数名(方法) |
示例代码(用 jg 图形对象)
|
setColor( "#HexColor" ); 指定画笔颜色,一旦设置后,这个颜色会一直保留,直到下一次再重新指定画笔颜色,这个颜色值可以类似于 html 中的 #rrggbb 颜色表示,用名称表示颜色也可以,例如:“ maroon ”
| jg.setColor("#ff0000");
or with identical result
jg.setColor("red");
|
setStroke( Number ); 指定画笔采用的线厚度,这个厚度一旦被设置,会一直保留,直到下一次重新指定一,默认厚度是 1px. 要设置点划线型,需要传 Stroke.DOTTED 参数,点划线型同样适用于矩形,多边型,折线和椭圆。
| jg.setStroke(3);
or
jg.setStroke(Stroke.DOTTED);
|
drawLine( X1, Y1, X2, Y2 ); 画线。从第一个坐标点到第二个坐标点,线的厚度由 setStroke 设置。
| jg.drawLine(20,50,453,40);
|
drawPolyline( Xpoints, Ypoints ); 一条折线是一系列线段的集合, Xpoints 和 Ypoints 是每个点的 x 坐标和 y 坐标的数组集合,必须像下面这样声明: var Xpoints = new Array(x1,x2,x3,x4,x5); var YPoints = new Array(y1,y2,y3,y4,y5);
| var Xpoints = new Array(10,85,93,60); var YPoints = new Array(50,10,105,87); jg.drawPolyline(Xpoints,Ypoints);
|
drawRect( X, Y, width, height ); 一个矩形的外边线。参照左上角的坐标点,并指定矩形的宽度和高度。
| jg.drawRect(20,50,70,140);
|
fillRect( X, Y, width, height ); 填充矩形,参照左上角的坐标点,并指定矩形的宽度和高度。
| jg.fillRect(20,50,453,40);
|
drawPolygon( Xpoints, Ypoints ); 多边形。 Xpoints 和 Ypoints 是每个点的 x 坐标和 y 坐标的数组集合,必须像下面这样声明: var Xpoints = new Array(x1,x2,x3,x4,x5); var YPoints = new Array(y1,y2,y3,y4,y5); 如果始点和终点末被指定,多边线将会自动闭合。
| var Xpoints = new Array(10,85,93,60); var Ypoints = new Array(50,10,105,87); jg.drawPolygon(Xpoints, Ypoints);
Instead of Xpoints and Ypoints you may use another name provided it follows the rules for variable names.
|
fillPolygon( Xpoints, Ypoints ); 填充矩形。参数作用见 drawPolygon()
| jg.fillPolygon(new Array(10,85,93,60), new Array(50,10,105,87));
|
drawEllipse( X, Y, width, height ); 画椭圆边线。参照椭圆的外接矩形, x 和 y 是这个外接矩形的左上角坐标
| jg.drawEllipse(20,50,70,140); or jg.drawOval(20,50,70,140);
|
fillEllipse( X, Y, width, height ); 填充椭圆。参数见 drawEllipse()
| jg.fillEllipse(20,50,71,141); or jg.fillOval(20,50,71,141);
|
drawString( "Text", X, Y ); 写文本至由 x 和 y 坐标指定的位置。不同于 Java ,坐标值是第一行文本的左上角坐标值。如果文本中包含有 HTML 标记将被转义,举个例子: "Some Text<br>more Text" 会被转义为两行 setFont( "font-family", "size+unit", Style ); 在 drawString() 之前调用。指定字体,大小,样式,字体和大小可以是与 HTML 中指示的一样,至于样式,可以使用的有: Font.PLAIN 默认样式,非粗体和斜体 Font.BOLD 粗体 Font.ITALIC 斜体 它们可以结合使用
| jg.setFont("arial","15px",Font.BOLD); jg.drawString("Some Text",20,50);
|
drawImage( "src", X, Y, width, height ); 在指定的位置画图像, ”src” 参数指定图像所在路径, width 和 height 参数允许调整图像宽高。
| jg.drawImage("friendlyDog.jpg", 20,50,100,150);
|
paint(); 必须显示调用,才能真正在 html 页面上画图形,不推荐每隔一段(每画一个图形)就调用一次。 像下面这样的调用应该避免 : jg.drawEllipse(0, 0, 100, 100); jg.paint(); jg.drawLine(200, 10, 400, 40); jg.paint(); ...
像下面这样的调用性能会很高 : jg.drawEllipse(0, 0, 100, 100); jg.drawLine(200, 10, 400, 40); /*... 还有其它画的方法 ... */ jg.paint(); // 最后调用 paint()
| jg.paint();
|
clear(); 与图形对象关联的 div 画布中的图形被清除(在 div 中不是由这个图形对象创建的内容是不会被改变的)
| jg.clear();
|
setPrintable( true ); 默认情况下,打印这些图形是不太可行的,因为浏览器的默认打印设置中会关闭打印背景,调用 setPrintable() ,并设置参数为 true ,将重置图形为可打印的(至少在 Mozilla/Netscape 6+ and IE 中)
| jg.setPrintable(false);
|
<!-------- below scripts are to draw graphics! -------------------> <style>.mytd { BORDER-RIGHT: #000000 0px solid; BORDER-TOP: #000000 0px solid; BORDER-LEFT: #000000 1px solid; BORDER-BOTTOM: #000000 1px solid } .mytab { BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; BORDER-LEFT: #000000 0px solid; BORDER-BOTTOM: #000000 0px solid } </style> var jg_ihtm, jg_ie, jg_fast, jg_dom, jg_moz, jg_n4 = (document.layers && typeof document.classes != "undefined"); function chkDHTM(x, i) { x = document.body || null; jg_ie = x && typeof x.insertAdjacentHTML != "undefined"; jg_dom = (x && !jg_ie && typeof x.appendChild != "undefined" && typeof document.createRange != "undefined" && typeof (i = document.createRange()).setStartBefore != "undefined" && typeof i.createContextualFragment != "undefined"); jg_ihtm = !jg_ie && !jg_dom && x && typeof x.innerHTML != "undefined"; jg_fast = jg_ie && document.all && !window.opera; jg_moz = jg_dom && typeof x.style.MozOpacity != "undefined"; } function pntDoc() { this.wnd.document.write(jg_fast? this.htmRpc() : this.htm); this.htm = ''; } function pntCnvDom() { var x = document.createRange(); x.setStartBefore(this.cnv); x = x.createContextualFragment(jg_fast? this.htmRpc() : this.htm); this.cnv.appendChild(x); this.htm = ''; } function pntCnvIe() { this.cnv.insertAdjacentHTML("beforeEnd", jg_fast? this.htmRpc() : this.htm); this.htm = ''; } function pntCnvIhtm() { this.cnv.innerHTML += this.htm; this.htm = ''; } function pntCnv() { this.htm = ''; } function mkDiv(x, y, w, h) { this.htm += '
'; } function mkDivIe(x, y, w, h) { this.htm += '%%'+this.color+';'+x+';'+y+';'+w+';'+h+';'; } function mkDivPrt(x, y, w, h) { this.htm += '
'; } function mkLyr(x, y, w, h) { this.htm += '<layer x="" y="" w="" h="" this="">\n'; } var regex = /%%([^;]+);([^;]+);([^;]+);([^;]+);([^;]+);/g; function htmRpc() { return this.htm.replace( regex, '<div style="overflow:hidden;position:absolute;background-color:'+ '$1;left:$2;top:$3;width:$4;height:$5"></div>\n'); } function htmPrtRpc() { return this.htm.replace( regex, '<div style="overflow:hidden;position:absolute;background-color:'+ '$1;left:$2;top:$3;width:$4;height:$5;border-left:$4px solid $1"></div>\n'); } function mkLin(x1, y1, x2, y2) { if (x1 > x2) { var _x2 = x2; var _y2 = y2; x2 = x1; y2 = y1; x1 = _x2; y1 = _y2; } var dx = x2-x1, dy = Math.abs(y2-y1), x = x1, y = y1, yIncr = (y1 > y2)? -1 : 1; if (dx >= dy) { var pr = dy 0) { ++x; if (p > 0) { this.mkDiv(ox, y, x-ox, 1); y += yIncr; p += pru; ox = x; } else p += pr; } this.mkDiv(ox, y, x2-ox+1, 1); } else { var pr = dx 0) { if (p > 0) { this.mkDiv(x++, y, 1, oy-y+1); y += yIncr; p += pru; oy = y; } else { y += yIncr; p += pr; } } this.mkDiv(x2, y2, 1, oy-y2+1); } else { while ((dy--) > 0) { y += yIncr; if (p > 0) { this.mkDiv(x++, oy, 1, y-oy); p += pru; oy = y; } else p += pr; } this.mkDiv(x2, oy, 1, y2-oy+1); } } } function mkLin2D(x1, y1, x2, y2) { if (x1 > x2) { var _x2 = x2; var _y2 = y2; x2 = x1; y2 = y1; x1 = _x2; y1 = _y2; } var dx = x2-x1, dy = Math.abs(y2-y1), x = x1, y = y1, yIncr = (y1 > y2)? -1 : 1; var s = this.stroke; if (dx >= dy) { if (s-3 > 0) { var _s = (s*dx*Math.sqrt(1+dy*dy/(dx*dx))-dx-(s>>1)*dy) / dx; _s = (!(s-4)? Math.ceil(_s) : Math.round(_s)) + 1; } else var _s = s; var ad = Math.ceil(s/2); var pr = dy 0) { ++x; if (p > 0) { this.mkDiv(ox, y, x-ox+ad, _s); y += yIncr; p += pru; ox = x; } else p += pr; } this.mkDiv(ox, y, x2-ox+ad+1, _s); } else { if (s-3 > 0) { var _s = (s*dy*Math.sqrt(1+dx*dx/(dy*dy))-(s>>1)*dx-dy) / dy; _s = (!(s-4)? Math.ceil(_s) : Math.round(_s)) + 1; } else var _s = s; var ad = Math.round(s/2); var pr = dx 0) { if (p > 0) { this.mkDiv(x++, y, _s, oy-y+ad); y += yIncr; p += pru; oy = y; } else { y += yIncr; p += pr; } } this.mkDiv(x2, y2, _s, oy-y2+ad); } else { while ((dy--) > 0) { y += yIncr; if (p > 0) { this.mkDiv(x++, oy, _s, y-oy+ad); p += pru; oy = y; } else p += pr; } this.mkDiv(x2, oy, _s, y2-oy+ad+1); } } } function mkLinDott(x1, y1, x2, y2) { if (x1 > x2) { var _x2 = x2; var _y2 = y2; x2 = x1; y2 = y1; x1 = _x2; y1 = _y2; } var dx = x2-x1, dy = Math.abs(y2-y1), x = x1, y = y1, yIncr = (y1 > y2)? -1 : 1, drw = true; if (dx >= dy) { var pr = dy 0) { if (drw) this.mkDiv(x, y, 1, 1); drw = !drw; if (p > 0) { y += yIncr; p += pru; } else p += pr; ++x; } if (drw) this.mkDiv(x, y, 1, 1); } else { var pr = dx 0) { if (drw) this.mkDiv(x, y, 1, 1); drw = !drw; y += yIncr; if (p > 0) { ++x; p += pru; } else p += pr; } if (drw) this.mkDiv(x, y, 1, 1); } } function mkOv(left, top, width, height) { var a = width>>1, b = height>>1, wod = width&1, hod = (height&1)+1, cx = left+a, cy = top+b, x = 0, y = b, ox = 0, oy = b, aa = (a*a)>1)*(1-(b>1) - aa*((b 0) { if (st >1, b = height>>1, wod = width&1, hod = (height&1)+1, cx = left+a, cy = top+b, x = 0, y = b, aa = (a*a)>1)*(1-(b>1) - aa*((b 0 && height-51 > 0)) { var ox = 0, oy = b, w, h, pxl, pxr, pxt, pxb, pxw; while (y > 0) { if (st >1, _b = (height-((s-1)>1, _x = 0, _y = _b, _aa = (_a*_a)>1)*(1-(_b>1) - _aa*((_b 0) { if (st 0) { if (_st >1, b = height>>1, wod = width&1, hod = height&1, cx = left+a, cy = top+b, x = 0, y = b, aa2 = (a*a)>1)*(1-(b>1) - aa2*((b 0) { if (st 0) { this.drawLine = mkLin2D; this.mkOv = mkOv2D; this.drawRect = mkRect; } else { this.drawLine = mkLin; this.mkOv = mkOv; this.drawRect = mkRect; } }; this.setPrintable = function(arg) { this.printable = arg; if (jg_fast) { this.mkDiv = mkDivIe; this.htmRpc = arg? htmPrtRpc : htmRpc; } else this.mkDiv = jg_n4? mkLyr : arg? mkDivPrt : mkDiv; }; this.setFont = function(fam, sz, sty) { this.ftFam = fam; this.ftSz = sz; this.ftSty = sty || Font.PLAIN; }; this.drawPolyline = this.drawPolyLine = function(x, y, s) { for (var i=0 ; i<x.length-1 i this.drawline y x this.fillrect="function(x," w h this.mkdiv this.drawpolygon="function(x," this.drawpolyline this.drawellipse="this.drawOval" function this.mkov this.fillellipse="this.fillOval" top var a="(w">>1, b = (h -= 1)>>1, wod = (w&1)+1, hod = (h&1)+1, cx = left+a, cy = top+b, x = 0, y = b, ox = 0, oy = b, aa2 = (a*a)>1)*(1-(b>1) - aa2*((b 0) { if (st maxy) maxy = array_y[i]; } for (y = miny; y y2) { y2 = array_y[ind1]; y1 = array_y[ind2]; x2 = array_x[ind1]; x1 = array_x[ind2]; } else continue; /* modified 11. 2. 2004 Walter Zorn */ if ((y >= y1) && (y y1) && (y '+ txt + ''; }; this.drawImage = function(imgSrc, x, y, w, h) { this.htm += '<div style="position:absolute;'+ 'left:' + x + 'px;'+ 'top:' + y + 'px;'+ 'width:' + w + ';'+ 'height:' + h + ';">'+ '<img src="'%20+%20imgSrc%20+%20'" width="' + w + '" height="' + h + '">'+ ''; }; this.clear = function() { this.htm = ""; if (this.cnv) this.cnv.innerHTML = this.defhtm; }; this.mkOvQds = function(cx, cy, xl, xr, yt, yb, w, h) { this.mkDiv(xr+cx, yt+cy, w, h); this.mkDiv(xr+cx, yb+cy, w, h); this.mkDiv(xl+cx, yb+cy, w, h); this.mkDiv(xl+cx, yt+cy, w, h); }; this.setStroke(1); this.setFont('verdana,geneva,helvetica,sans-serif', String.fromCharCode(0x31, 0x32, 0x70, 0x78), Font.PLAIN); this.color = '#000000'; this.htm = ''; this.wnd = wnd || window; if (!(jg_ie || jg_dom || jg_ihtm)) chkDHTM(); if (typeof id != 'string' || !id) this.paint = pntDoc; else { this.cnv = document.all? (this.wnd.document.all[id] || null) : document.getElementById? (this.wnd.document.getElementById(id) || null) : null; this.defhtm = (this.cnv && this.cnv.innerHTML)? this.cnv.innerHTML : ''; this.paint = jg_dom? pntCnvDom : jg_ie? pntCnvIe : jg_ihtm? pntCnvIhtm : pntCnv; } this.setPrintable(false); } function integer_compare(x,y) { return (x y)*1); } var no_dhtm = (document.layers || window.opera && !document.defaultView); function ZOOM() { if (document.body && document.body.style && typeof document.body.style.zoom != "undefined") { if (document.body.style.zoom=="400%") document.body.style.zoom = "100%"; else { document.body.style.zoom = "400%"; alert('You\'ve doubleclicked on the document.\nDoubleclick again to unzoom.'); } } } document.ondblclick=ZOOM; function DRAW(shape) { if (jg_n4 || window.opera && !document.defaultView) { alert('In Netscape 4 and Opera function myDrawFunction() { jg_doc.setColor("#00ff00"); jg_doc.fillEllipse(100, 200, 100, 180); jg_doc.setColor("maroon"); jg_doc.drawPolyline(new Array(50, 10, 120), new Array(10, 50, 70)); jg_doc.paint(); jg.setColor("#ff0000"); jg.drawLine(10, 113, 220, 55); jg.setColor("#0000ff"); jg.fillRect(350, 30, 30, 60); jg.paint(); jg2.setColor("#0000ff"); jg2.drawEllipse(10, 50, 30, 100); jg2.drawRect(400, 10, 100, 50); jg2.paint(); } var jg_doc = new jsGraphics(); var jg = new jsGraphics("myCanvas"); var jg2 = new jsGraphics("anotherCanvas"); myDrawFunction(); function ZOOM() { if (document.body && document.body.style && typeof document.body.style.zoom != "undefined") { if (document.body.style.zoom=="400%") document.body.style.zoom = "100%"; else { document.body.style.zoom = "400%"; alert('You\'ve doubleclicked on the document.\nDoubleclick again to unzoom.'); } } } document.ondblclick=ZOOM; function drwPxOv(hnd, left, top, width, height, fact, bad) { var a = width>>1, b = height>>1, cx = left + a*fact, cy = top + b*fact, x = 0, y = b, ox = 0, oy = b, a2 = (a*a)>1)*(1-(b>1) - a2*((b0); if (!bad) hnd.drawRect(cx+fact*ox, cy-fact*oy, fact*(a-ox+1), fact*(oy+1)); } var jg = new jsGraphics("stairsdemo"); jg.setFont("verdana,geneva,sans-serif", "10px", Font.PLAIN); jg.setColor("#ee8800"); jg.drawString("Image dynamically drawn with the Draw Shapes Library", 0, 2); jg.setFont("verdana,geneva,sans-serif", "11px", Font.PLAIN); jg.setColor("#ff0099"); jg.drawString("unfavourable", 10, 129); jg.drawRect(0, 25, 10, 10); jg.drawRect(10, 25, 10, 10); jg.drawRect(20, 25, 10, 10); jg.drawRect(20, 35, 10, 10); jg.drawRect(30, 35, 10, 10); jg.drawRect(40, 35, 10, 10); jg.drawRect(40, 45, 10, 10); jg.drawRect(50, 45, 10, 10); jg.drawRect(60, 45, 10, 10); jg.drawRect(60, 55, 10, 10); jg.drawRect(60, 65, 10, 10); jg.drawRect(70, 65, 10, 10); jg.drawRect(70, 75, 10, 10); jg.drawRect(70, 85, 10, 10); jg.drawRect(80, 85, 10, 10); jg.drawRect(80, 95, 10, 10); jg.drawRect(80, 105, 10, 10); jg.setColor("#008800"); jg.drawString("better", 130, 129); drwPxOv(jg, 30, 25, 16, 16, 10, true); jg.setColor("#0000cc"); jg.drawString("optimal", 260, 129); drwPxOv(jg, 150, 25, 16, 16, 10); jg.paint();</div></x.length-1></layer>
相关推荐
JVGL库提供了高性能的JavaScript图形函数功能,能够满足Web GIS平台上的矢量图形可视化需求。 三、将JVGL应用到Web GIS平台上的具体方案 将JVGL应用到Web GIS平台上,需要从地图窗口与JVGL的归一化、地图符号的...
Flash教程-gb.exe可能是Flash的基础到高级的指导课程,包括学习矢量图形绘制、时间轴管理、动作脚本(ActionScript)编程等。掌握Flash意味着你可以创建自定义的按钮、导航栏、甚至是完整的网页应用程序,为用户提供...
- **DojoX**:集合了一些实验性质的代码和控件,例如DateGrid、图表绘制、离线应用支持及跨浏览器矢量图形绘制等功能,为开发者提供了更多的可能性。 #### YUI (Yahoo! User Interface Library) YUI是由Yahoo开发...
6. **js+vml+svg**: VML和SVG(Scalable Vector Graphics)都是用于在网页中表示矢量图形的方式。JavaScript可以用来操作VML(主要在IE中)和SVG(大多数现代浏览器都支持),从而实现跨浏览器的统计图表。SVG特别...
在文件列表中提到了"DHTML",它是Dynamic HTML的缩写,是90年代末到2000年初的一个概念,指的是使用JavaScript、CSS和DOM来实现动态更新的HTML页面。虽然DHTML不是HTML5的一部分,但它为HTML5的发展奠定了基础,...
然而,随着SVG(Scalable Vector Graphics)的普及,VML的使用已逐渐被淘汰,SVG现在被广泛接受为Web上的矢量图形标准。 命令标示符可能是指在HTML或JavaScript中使用的特定指令或API,用于执行特定的操作,如页面...
通常,这可以通过JavaScript库如GreenSock Animation Platform (GSAP) 或者HTML5的`<audio>`和`<video>`元素配合事件监听来实现。 6. **命令标识符**: 这可能指的是JavaScript中的函数、方法或特定API的引用。...
9. Flash中的元件可以是图形、按钮、影片剪辑、声音文件或字体,方便重复使用和统一管理。 10. Flash可以创建动作补间和形状补间动画,前者用于对象之间的平滑过渡,后者用于形状之间的变化。 11. 在Flash中导入...
这关系到软件的合法使用和商业行为的合规性。 知识点七:ArcGIS家族产品 ArcGIS家族包括多个产品,例如ArcGIS Desktop(包含ArcInfo、ArcEditor和ArcView)、ArcGIS Engine、ArcGIS Server、ArcIMS、ArcGIS Mobile...
- **Fireworks简介**:Adobe Fireworks是一款专为网络图形设计而设计的软件,它可以用来创建和优化网页图像,并支持矢量图形和位图图像。 - **矢量图与位图**: - **矢量图**:由数学公式定义的图形,可以无损缩放...
28. Flash中的矢量图形在缩放或变形时保持清晰,而位图则可能失真。 29. 代码第一行表示这是一个使用VBScript脚本的ASP(Active Server Pages)网页。 这些知识点涵盖了网页设计与制作的基础和核心内容,包括网络...
Fireworks是专为网页设计而生的工具,它能处理多种格式的图像,包括矢量图形和位图。在网店装修中,Fireworks尤其适合切图、制作按钮、GIF动画等,其强大的导出功能可自动生成适合网页的优化图像和JavaScript代码。...
28. **Flash中矢量图形的优点**:缩放和变形不影响显示质量。 29. **Vbscript标记的页面类型**:ASP(Active Server Pages),是微软开发的服务器端脚本环境。 以上就是大学网页设计考试中涉及的一些关键知识点,...