网站首页 手机版
 注册 登录
您现在的位置: 畅无忧设计 >> 网络编程 >> ASP教程 >> 正文
最新文章
· FSO 组件asp生成html静态页面碰到缓存
· asp实现长文章自动分页插件
· 在ASP中访问和更新Cookies集合
· ASP错误提示大全
· 学习ASP的几个观点
· ASP用两级联动下拉列表来显示大类和小
· ASP取当前页面地址和参数
· ASP删除记录的同时删除相关图片
· asp将查询结果导出到excel
· ASP批量导入Excel到Access或者Sql Se
热门文章
 化境ASP无组件上传类 - upload_5xs
 一个获取ACCESS数据库表名以及表名
 asp将查询结果导出到excel
 艾恩ASP无组件上传修改版
 ASP批量导入Excel到Access或者Sql 
 ASP读取数据库的Flash+JS图片切换特
 ASP用两级联动下拉列表来显示大类和
 ASP+JS实现网页歌曲连播、点播功能
 使用ASP重启服务器
 asp批量替换access数据库中指定字段
相关文章
没有相关文章
ASP上传文件和图片
来源:本站原创 更新时间:2009/5/14 16:56:54 阅读次数:
字体:[ ] 我要投稿
<%@ Import Namespace="System.IO" %>
<%@ Import Namespace="System.Drawing" %>
<%@ Import Namespace="System.Drawing.Imaging" %>
<html>
<script language="C#" runat=server>
    void UploadBtn_Click(Object sender, EventArgs e) {
        UploadFile.PostedFile.SaveAs(Server.MapPath("chunfeng.jpg"));
        ImageEditor.Visible = true;
      }
     void UpdateBtn_Click(Object sender, EventArgs e) {
        System.Drawing.Image image = System.Drawing.Image.FromFile(Server.MapPath("chunfeng.jpg"));
        System.Drawing.Image newimage = new Bitmap(image.Width, image.Height, PixelFormat.Format32bppRGB);
        Graphics g = Graphics.FromImage(newimage);
        g.DrawImage(image,0,0,image.Width,image.Height);
        Font f = new Font("Lucida Sans Unicode", Int32.Parse(FontSize.SelectedItem.Text));
        Brush b = new SolidBrush(Color.Red);
        g.DrawString(Caption.Text, f, b, 10, 140);
        g.Dispose();
        System.Drawing.Image thumbImage = newimage.GetThumbnailImage(Int32.Parse(Width.Text),Int32.Parse
(Height.Text),null,0);
        image.Dispose();
        thumbImage.Save(Server.MapPath("chunfeng.jpg"), ImageFormat.JPEG);
      }
  </script>
  <body>
    <form enctype="multipart/form-data" runat=server>
          <h3>
          请选择上传文件: <input id="UploadFile" type=file runat=server>
          <asp:button Text="上传文件" OnClick="UploadBtn_Click" runat=server/>
          <hr>
          <asp:panel id="ImageEditor" Visible=false runat=server>
            <img src="chunfeng.jpg">
            <h3>
                图像宽度: <asp:textbox id="Width" runat=server/>
                图像高度: <asp:textbox id="Height" runat=server/> <br>
                文本标题: <asp:textbox id="Caption" runat=server/>
                标题尺寸: <asp:dropdownlist id="FontSize" runat=server>
                                        <asp:listitem>14</asp:listitem>
                                        <asp:listitem>18</asp:listitem>
                                        <asp:listitem>26</asp:listitem>
                                        <asp:listitem>36</asp:listitem>
                                        <asp:listitem>48</asp:listitem>
                                        <asp:listitem>62</asp:listitem>
                                      </asp:dropdownlist>
                <asp:button Text="上传图片" OnClick="UpdateBtn_Click" runat=server/>
            </h3>
          </asp:panel>
      </form>
  </body>
</html>
  • 上一篇文章:
  • 下一篇文章:
  • 关于我们 - 联系我们 - 广告服务 - 在线投稿 - 友情链接 - 网站地图 - 版权声明
    CopyRight 2008-2010, CWYDESIGN.COM - 畅无忧设计, Inc. All Rights Reserved
    滇ICP备09005765号