易截截图软件、单文件、免安装、纯绿色、仅160KB

asp.net 将字符串生成图片 - .NET技术 / ASP.NET

我想将字符串生成一张图片,如何写?
字符串生成图片?

引用

字符串生成图片?


说简单点就是生成验证码的方法。


Private Sub Paint(ByVal strCode As String)
  Dim strImgPath As String = Server.MapPath("myCodeImg.jpg")
  Dim strTempPath As String = strImgPath
  System.IO.File.Delete(strImgPath)

  Const intWidth As Int16 = 400
  Const intHeight As Int16 = 150

  Dim myBimap As System.Drawing.Image = New System.Drawing.Bitmap(intWidth, intHeight)

  Dim myG As System.Drawing.Graphics = System.Drawing.Graphics.fromImage(myBimap)

  Dim myFont As System.Drawing.Font = New System.Drawing.Font("幼圆", 16, FontStyle.Bold)

  Dim myRect As System.Drawing.RectangleF = New System.Drawing.RectangleF(2, 2, intWidth, intHeight)

  Dim myBrush As System.Drawing.SolidBrush = New System.Drawing.SolidBrush(Color.White)

  myG.Clear(Color.Blue)

  myG.DrawString(strCode, myFont, myBrush, myRect)

  myBimap.Save(strTempPath, System.Drawing.Imaging.ImageFormat.Jpeg)
  Image1.ImageUrl = strTempPath
  myG.Dispose()
  myBimap.Dispose()
  End Sub





相关问答:

求一个在线测试系统 asp的 - Web 开发 / ASP

http://www.zgjhjy.com/Test/PrimaryTest/Index.aspx
就是类似以上的在线测试系统,需要有一个后台的,语言是asp的,数据库是access的,还需要能在后台对信息进行添删改查的。谢谢各位了。。。
程序真的很多,不知 ......

asp.net程序员求职 - .NET技术 / 非技术区

本人工作经验一年以上
熟悉asp.net
熟悉javascript
熟悉Css
熟悉ajax
熟悉sqlserver2005
有一年的项目经验
具体项目和其他的就不在这写了
有意者联系:
QQ:359233910
引用
本人工作经验一年以上
熟悉asp ......

asp.net批量上传图片 - .NET技术 / ASP.NET

asp.net批量上传图片最好有源码,在线等!!!!!!!
源码很长的。

参考

C# code:
HttpFileCollection files = HttpContext.Current.Request.Files;
if (files.Count <= 1)
{
......

wap网站开发的问题 - .NET技术 / ASP.NET

我用.net开发wap网站
1,我从工具箱里拖了两个link,这两个link会显示在两行,如果让这两个link处于同一行。
2,如何显示两个控件之间的空格问题。
跟wap有关吗?不太明白

友情帮顶。。。。。。。。。。

就 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号