ASP.NET(C#)怎么在页面上画一条直线?

GDI_GTK 2009-03-10 02:23:47
基于桌面好画,但基于网页呢?
...全文
460 12 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
12 条回复
切换为时间正序
请发表友善的回复…
发表回复
hangang7403 2009-03-10
  • 打赏
  • 举报
回复
用dreamweaver做不一样吗
cppfaq 2009-03-10
  • 打赏
  • 举报
回复
ghy2611655 2009-03-10
  • 打赏
  • 举报
回复
[Quote=引用 9 楼 claymore1114 的回复:]
C# code
protected void Page_Load(object sender, EventArgs e)
{
GraphicsImage();
}
private void GraphicsImage( )
{
int width = 440, hight = 200;
Bitmap image = new Bitmap(width, hight);
Graphics g = Graphics.FromImage(image); //创建画布
try
{
g.Clear(Color.YellowGreen); //清空背景色
Font font1…
[/Quote]
很帅气嘛
claymore1114 2009-03-10
  • 打赏
  • 举报
回复

protected void Page_Load(object sender, EventArgs e)
{
GraphicsImage();
}
private void GraphicsImage( )
{
int width = 440, hight = 200;
Bitmap image = new Bitmap(width, hight);
Graphics g = Graphics.FromImage(image); //创建画布
try
{
g.Clear(Color.YellowGreen); //清空背景色
Font font1 = new Font("宋体", 12); //设置字体类型和大小
Brush brush = new SolidBrush(Color.Red); //设置画刷颜色
Pen pen = new Pen(Color.Blue,1); //创建画笔对象
g.DrawString("GDI+绘制直线、矩形和多边形", font1, brush, 100, 20);
g.DrawLine(pen, 40, 80, 100, 80); //绘制直线 pen:确定线条的颜色、宽度和样式。
//pt1(40,80):表示要连接的第一个点;pt2(100,80):表示要连接的第二个点。


g.DrawRectangle(pen, 130, 60, 100, 40); //绘制矩形 pen:确定矩形的颜色、宽度和样式。
//x(130):要绘制矩形的左上角的x坐标;y(60):要绘制矩形的左上角的y坐标;
//width(100):要绘制矩形的宽度;height(40):要绘制矩形的高度。


Point[] points = new Point[6];
points[0].X=300;
points[0].Y=60;
points[1].X=250;
points[1].Y=80;
points[2].X=300;
points[2].Y=100;
points[3].X=350;
points[3].Y=100;
points[4].X=400;
points[4].Y=80;
points[5].X=350;
points[5].Y=60;

g.DrawPolygon(pen, points); //绘制多边形 pen:确定多边形的颜色、宽度和样式;points:表示多边形的顶点。

System.IO.MemoryStream ms = new System.IO.MemoryStream( );
image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
Response.ClearContent( );
Response.ContentType = "image/Gif";
Response.BinaryWrite(ms.ToArray( ));
}
catch(Exception ms)
{
Response.Write(ms.Message);
}
}
GDI_GTK 2009-03-10
  • 打赏
  • 举报
回复
哪儿有详细的vml介绍?
wengyuli 2009-03-10
  • 打赏
  • 举报
回复
[Quote=引用 6 楼 zgke 的回复:]
[code=HTML
<html xmlns:v="urn:schemas-microsoft-com:vml">
<body>
<v:Line from='10px,10px' to='20px,2px' id='Line1' strokecolor='red' style="Behavior: url(#default#VML);"> </v:Line>
<body>
</html>

[/code]
[/Quote]

不错的方法
zgke 2009-03-10
  • 打赏
  • 举报
回复
[code=HTML
<html xmlns:v="urn:schemas-microsoft-com:vml">
<body>
<v:Line from='10px,10px' to='20px,2px' id='Line1' strokecolor='red' style="Behavior: url(#default#VML);"></v:Line>
<body>
</html>

[/code]
wendy_fw 2009-03-10
  • 打赏
  • 举报
回复
直接在HTML 裏輸入 <hr/> 就可以了
xeon_pan 2009-03-10
  • 打赏
  • 举报
回复
GDI+ 动态输出个图片流,用 DrawLine?
zgke 2009-03-10
  • 打赏
  • 举报
回复
用vml把.处理起来比桌面要舒服
blue_summer 2009-03-10
  • 打赏
  • 举报
回复
<hr> 这个??
playzxw 2009-03-10
  • 打赏
  • 举报
回复
先生成个图片,在显示图片。就像网页验证码一样

111,092

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • AIGC Browser
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧