仓酷云
标题:
ASP教程之为freetextbox1.6.5上传图片加下水印
[打印本页]
作者:
飘灵儿
时间:
2015-1-16 23:36
标题:
ASP教程之为freetextbox1.6.5上传图片加下水印
asp可以使用微软的activeX使得网页功能无比强大,不过安全性也较差,而且是基于的windows服务器,所以性能稳定性也一般上传|上传图片Graphics的DrawImage办法,界说了多种原型,能够在制订地位绘制指定Image工具。使用此办法能够在图片工具上再绘制一个水印图片。分离FreeTextBox便利的图片上传功效,能够完成一个合适图片旧事较多的旧事体系。以下WaterMark办法所带参数为文件流,原始图片称号,水印图片称号,图片保留路径等,对应正文了解代码应当没有多年夜成绩。
-----------------------------------------------------------------
publicvoidWaterMark(StreaminputStream,stringfileName,string
markName,stringpicPath)
{
stringWorkingDirectory=
HttpContext.Current.Request.PhysicalApplicationPath+""+picPath;
StreamPhotoStream=inputStream;
stringWatermarkName=markName;
stringPhotoFinalName=fileName;
//createaimageobjectcontainingthephotographtowatermark
System.Drawing.ImageimgPhoto=System.Drawing.Image.FromStream(PhotoStream);
intphWidth=imgPhoto.Width;
intphHeight=imgPhoto.Height;
//createaimageobjectcontainingthewatermark
System.Drawing.ImageimgWatermark=newBitmap(WorkingDirectory+""+WatermarkName);
intwmWidth=imgWatermark.Width;
intwmHeight=imgWatermark.Height;
//CreateaBitmap
BitmapbmWatermark=newBitmap(PhotoStream);
bmWatermark.SetResolution(imgPhoto.HorizontalResolution,imgPhoto.VerticalResolution);
//LoadthisBitmapintoanewGraphicObject
GraphicsgrWatermark=Graphics.FromImage(bmWatermark);
ImageAttributesimageAttributes=newImageAttributes();
//Thiscolormanipulationisusedtochangetheopacityofthe
//watermark.Thisisdonebyapplyinga5x5matrixthatcontainsthe
//coordinatesfortheRGBAspace.Bysettingthe3rdrowand3rdcolumn
//to0.3fweachivealevelofopacity
float[][]colorMatrixElements={
newfloat[]{1.0f,0.0f,0.0f,0.0f,0.0f},
newfloat[]{0.0f,1.0f,0.0f,0.0f,0.0f},
newfloat[]{0.0f,0.0f,1.0f,0.0f,0.0f},
newfloat[]{0.0f,0.0f,0.0f,0.3f,0.0f},
newfloat[]{0.0f,0.0f,0.0f,0.0f,1.0f}};
ColorMatrixwmColorMatrix=newColorMatrix(colorMatrixElements);
imageAttributes.SetColorMatrix(wmColorMatrix,ColorMatrixFlag.Default,
ColorAdjustType.Bitmap);
//Forthisexamplewewillplacethewatermarkintheupperright
//handcornerofthephotograph.offsetdown10pixelsandtothe
//left10pixles
intxPosOfWm=((phWidth-wmWidth)-10);
intyPosOfWm=10;
grWatermark.DrawImage(imgWatermark,
newRectangle(xPosOfWm,yPosOfWm,wmWidth,wmHeight),//SetthedetinationPosition
0,//x-coordinateoftheportionofthesourceimagetodraw.
0,//y-coordinateoftheportionofthesourceimagetodraw.
wmWidth,//WatermarkWidth
wmHeight,//WatermarkHeight
GraphicsUnit.Pixel,//Unitofmeasurment
imageAttributes);//ImageAttributesObject
//ReplacetheoriginalphotgraphsbitmapwiththenewBitmap
imgPhoto=bmWatermark;
grWatermark.Dispose();
</p>ASP由于使用了COM组件所以它会变的十分强大,但是这样的强大由于WindowsNT系统最初的设计问题而会引发大量的安全问题。只要在这样的组件或是操作中一不注意,哪么外部攻击就可以取得相当高的权限而导致网站瘫痪或者数据丢失;
作者:
愤怒的大鸟
时间:
2015-1-19 15:35
如何学好ASP,以前也有人问过,把回答给你转过来看看能否对你有帮助:
作者:
只想知道
时间:
2015-1-24 15:59
他的语法和设计思路和VB完全相同,导致很多ASP的书都留一句“相关内容请参考VB的相关教材....”更糟糕的是,相当多的ASP教程混合了Javascript,VBscript等等脚本语言,搞的初学者。
作者:
简单生活
时间:
2015-2-2 08:22
完全不知道到底自己学的是什么。最后,除了教程里面说的几个例子,还是什么都不会。
作者:
小女巫
时间:
2015-2-2 18:27
尽管MS自己讲C#内核中更多的象VC,但实际上我还是认为它和Java更象一些吧。首先它是面向对象的编程语言,而不是一种脚本,所以它具有面向对象编程语言的一切特性,比如封装性、继承性、多态性等等,这就解决了刚才谈到的ASP的那些弱点。
作者:
山那边是海
时间:
2015-2-3 21:00
学习是为了用的,是为了让你的程序产生价值,把握住这个原则会比较轻松点。除此之外,课外时间一定要多参加一些社会实践活动,来锻炼自己的能力。
作者:
小妖女
时间:
2015-2-9 04:55
先学习用frontpage熟悉html编辑然后学习asp和vbscript建议买书进行系统学习
作者:
精灵巫婆
时间:
2015-2-26 23:23
ASP主要是用好六个对象,其实最主要的是用好其中两个:response和request,就可以随心所欲地控制网页变换和响应用户动作了。
作者:
乐观
时间:
2015-3-8 18:28
跟学别的语言一样,先掌握变量,流程控制语句(就是ifwhileselect)等,函数/过程,数组
作者:
变相怪杰
时间:
2015-3-16 10:43
在平时的学习过程中要注意现学现用,注重运用,在掌握了一定的基础知识后,我们可以尝试做一些网页,也许在开始的时候我们可能会遇到很多问题,比如说如何很好的构建基本框架。
作者:
活着的死人
时间:
2015-3-22 22:10
另外因为asp需要使用组件,所以了解一点组件的知识(ADODB也是组件)
欢迎光临 仓酷云 (http://ckuyun.com/)
Powered by Discuz! X3.2