ASP組件AspJpeg(加水印)生成縮略圖等使用方法

ASP組件AspJpeg(加水印)生成縮略圖等使用方法

做者: 字體:[增長 減少] 類型:轉載 時間:2012-12-17 我要評論html

ASPJPEG是一款功能至關強大的圖象處理組件,用它能夠輕鬆地作出圖片的縮略圖和爲圖片加上水印功能。下面簡單介紹一下使用方法,須要的朋友能夠了解下

1、爲圖片添加水印 數據庫

複製代碼 代碼以下:

<% 
Dim Jpeg ''''//聲明變量 
Set Jpeg = Server.CreateObject("Persits.Jpeg") ''''//調用組件 
Jpeg.Open Server.MapPath("aaa.JPG") ''''//源圖片位置 
Jpeg.Canvas.Font.Color = &H000000 ''''//水印字體顏色 
Jpeg.Canvas.Font.Family = "宋體" ''''//水印字體 
Jpeg.Canvas.Font.Size = 14 ''''//水印字體大小 
Jpeg.Canvas.Font.Bold = False ''''//是否粗體,粗體用:True 
Jpeg.Canvas.Font.BkMode = &HFFFFFF ''''//字體背景顏色 
Jpeg.Canvas.Print 10, 10, "不敗頑童工做室" ''''//水印文字,兩個數字10爲水印的xy座標 
Jpeg.Save Server.MapPath("aaa_05.jpg") ''''//生成有水印的新圖片及保存位置 
Set Jpeg = Nothing ''''//註銷組件,釋放資源 
Response.Write "<img src=aaa_05.jpg>" ''''//在該頁顯示生成水印後的圖片 
%> 


ASP圖片水印AspJpeg v1.8 特別版
2、生成縮略圖 安全

複製代碼 代碼以下:

<% 
Dim Jpeg ''''//聲明變量 
Set Jpeg = Server.CreateObject("Persits.Jpeg") ''''//調用組件 
Jpeg.Open Server.MapPath("aaa.JPG") ''''//原圖位置 
Jpeg.Width = Jpeg.OriginalWidth/4 ''''//設圖片寬度爲原圖的四分之一 
Jpeg.Height = Jpeg.OriginalHeight/4 ''''//設圖片高度爲原圖的四分之一 
Jpeg.Sharpen 1, 130 ''''//設定銳化效果 
Jpeg.Save Server.MapPath("aaa_small.jpg") ''''//生成縮略圖位置及名稱 
Set Jpeg = Nothing ''''//註銷組件,釋放資源 
Response.Write "<img src=aaa_small.jpg>" ''''//在該頁顯示生成縮略圖 
%> 


aspjpeg組件高級使用方法介紹 
aspjpeg是一款很是強大的圖片處理組件,純英文版本。不過早已經有免費版和破解版,可是對其進行詳細與深刻介紹的文章倒是很少,即便有也只牽涉到圖片縮略和圖片水印。多是由於純英文的緣故。 
這裏我就是針對這些問題談談aspjpeg的高級用法。這裏的技術主要包括: 
圖片縮略 
圖片水印 
安全碼技術 
圖片切割 
圖片合併 
數據庫支持 
更多不經常使用的方法介紹 
以及相關的一些實用技術 
aspjpeg惟一點不足的就是輸出方式比較單一。在這裏,咱們主要談將圖片處理保存後再調用的這種輸出方法。另外,本人比較懶,因此有些代碼仍然引用於原文檔,不懂的地方偶會加以解釋! 
學過vb或者.net的同志確定一看就明白了。刷子來着。呵呵。 
1、圖片縮略 session

複製代碼 代碼以下:

<% 
Set Jpeg = Server.CreateObject("Persits.Jpeg") 調用組件 
Path = Server.MapPath("images") & "\clock.jpg" 待處理圖片路徑 
Jpeg.Open Path 打開圖片 
高與寬爲原圖片的1/2 
Jpeg.Width = Jpeg.OriginalWidth / 2 
Jpeg.Height = Jpeg.OriginalHeight / 2 
保存圖片 
Jpeg.Save Server.MapPath("images") & "\clock_small.jpg" 
%> 


<IMG SRC="images/clock_small.jpg"> 查看處理的圖片 
2、圖片水印 app

複製代碼 代碼以下:

<% 
Set Jpeg = Server.CreateObject("Persits.Jpeg") 
Jpeg.Open Server.MapPath("images/dodge_viper.jpg") 
開始寫文字 
Jpeg.Canvas.Font.Color = &H000000'''' white 顏色 
Jpeg.Canvas.Font.Family = "Courier New" 字體 
Jpeg.Canvas.Font.Bold = True 是否加粗 
Jpeg.Canvas.Print 10, 10, "Copyright (c) XYZ, Inc." 
打印座標x 打印座標y 須要打印的字符 
如下是對圖片進行邊框處理 
Jpeg.Canvas.Pen.Color = &H000000'''' black 顏色 
Jpeg.Canvas.Pen.Width = 2 畫筆寬度 
Jpeg.Canvas.Brush.Solid = False 是否加粗處理 
Jpeg.Canvas.Bar 1, 1, Jpeg.Width, Jpeg.Height 
起始X座標 起始Y座標 輸入長度 輸入高度 
Jpeg.Save Server.MapPath("images/dodge_viper_framed.jpg") 保存 
%> 


3、安全碼 
安全瑪的道理和加水印差很少,不少朋友問我要具體的代碼技術,在這裏我就寫出來和你們分享,通常人我還不告訴他。呵呵。 asp.net

複製代碼 代碼以下:

<% 
生成安全碼的函數 www.wuyouw.com 
function make_randomize(max_len,w_n) max_len 生成長度,w_n:0 可能包含字母,1:只爲數字 
randomize 
for intcounter=1 to max_len 
whatnext=int((1-0+1)*rnd+w_n) 
if whatnext=0 then 
upper=122 
lower=97 
else 
upper=57 
lower=48 
end if 
strnewpass=strnewpass & chr(int((upper-lower+1)*rnd)+lower) 
next 
make_randomize=strnewpass 
end function 
%> 


生成安全碼的圖片。固然你要預先準備一張背景圖哦 less

複製代碼 代碼以下:

<%random_num=make_randomize(4,1) 生成4位數字的安全碼 
session("random_num")=random_num 爲何調用session,沒有session的安全碼是徹底沒有意義的。呵呵 
Set Jpeg = Server.CreateObject("Persits.Jpeg") 調用組件 
Jpeg.Open Server.MapPath("infos/random_pic/random_index.gif") 打開準備的圖片 
Jpeg.Canvas.Font.Color = &H006699 
Jpeg.Canvas.Font.Family = "Arial Black" 
Jpeg.Canvas.Font.Bold = false 
Jpeg.Canvas.PrintText 0, -2, random_num 
jpeg.save Server.MapPath("infos/random_pic/random_index.bmp") 保存 
%> 


<img src="infos/random_pic/random_index.bmp" border="0" align="absmiddle"> 
本身作作看。呵呵。 
4、圖片切割 
一直以來,對aspjpeg不瞭解的人覺得是沒法用它來進行切割的。 
其實有這樣的一個方法的 
crop x1,y1,x2,y2 
切割長方型左上角x座標,y座標 右下角x座標 y座標 
下面我就作一個演示哈 
Set Jpeg = Server.CreateObject("Persits.Jpeg") 
jpeg.open server.MapPath("/pic/1.gif") 
jpeg.width=70 
Jpeg.Height = Jpeg.OriginalHeight*70 / jpeg.Originawidth 
jpeg.crop 0,0,70,52 開始切割實際上是把超過52象素的下部分去掉 
jpeg.save server.MapPath("/temp_pic/small_1.gif") 保存 
怎麼樣,很簡單吧

5、圖片合併 
咱們這裏是要把logo圖片加到dodge_viper.jpg圖片上去 
其實,圖片合併的方法也能夠用來動態打水印哦 dom

複製代碼 代碼以下:

Set Photo = Server.CreateObject("Persits.Jpeg") 
PhotoPath = Server.MapPath("images") & "\dodge_viper.jpg" 
Photo.Open PhotoPath 
Set Logo = Server.CreateObject("Persits.Jpeg") 
LogoPath = Server.MapPath("images") & "\clock.jpg" 
Logo.Open LogoPath 
Logo.Width = 70 
Logo.Height = Logo.Width * Logo.OriginalHeight / Logo.OriginalWidth 
Photo.DrawImage 0, 0, Logo 
Photo.SendBinary 


這裏用了sendBinary的輸出方法。固然,你也能夠先保存更改後的dodge_viper.jpg,再輸入也能夠。我我的不大喜歡用sendBinary方法,在網速慢的時候容易出錯。在速度方面也不怎樣。呵呵。 
6、數據庫支持 
這裏很少說了。其實就是Binary方法,你們知道圖片存進數據庫只能存爲二進制的文件的。因此代碼就懶的寫了。 

7、更多方法介紹 
Canvas.Line(Left, Top, Right, Bottom) 
畫一條直線 
Canvas.Ellipse(Left, Top, Right, Bottom) 
畫出一個橢圓 
Canvas.Circle(X, Y, Radius) 
畫出一個圓 
Canvas.Bar(Left, Top, Right, Bottom) 
畫出一個長方形,上面有代碼介紹了 
Canvas.Font.ShadowColor 
文字陰影顏色 
Canvas.Font.ShadowXOffset As Long 
陰影X座標設定 
Canvas.Font.ShadowYOffset As Long 
Y座標設定 
Canvas.Font.BkMode As String 
文字背景 
======================================== 
今天給你們講的是ASP給圖片加水印的知識 
ASP給圖片加水印是須要組件的...經常使用的有aspjpeg和中國人本身開發的wsImage...前者有30天的免費...後者徹底免費...固然咱們要用國人的產品了..嘿嘿.. 
註冊組件的方法
命令提示符下輸入"regsvr32 [Dll路徑]" 就能夠了 
圖片添加水印無非就是得到圖片大小,而後把水印寫上去..ASP代碼只是起個控制組件的做用.用代碼來講明一切吧. 

一:得到圖片大小(這裏是用象素值表示的.學PhotoShop的朋友都應該明白) ide

複製代碼 代碼以下:

<% 
set obj=server.CreateObject("wsImage.Resize") ''''''''調用組件 
obj.LoadSoucePic server.mappath("25.jpg") ''''''''打開圖片,圖片名字是25.jpg 
obj.GetSourceInfo iWidth,iHeight 
response.write "圖片寬度:" & iWidth & "<br>" ''''''''得到圖片寬度 
response.write "圖片高度:" & iHeight & "<br>" ''''''''得到圖片高度 
strError=obj.errorinfo 
if strError<>"" then 
response.write obj.errorinfo 
end if 
obj.free 
set obj=nothing 
%> 


二:添加文字水印 函數

複製代碼 代碼以下:

<% 
set obj=server.CreateObject("wsImage.Resize") 
obj.LoadSoucePic server.mappath("25.jpg") ''''''''裝載圖片 
obj.Quality=75 
obj.TxtMarkFont = "華文彩雲" ''''''''設置水印文字字體 
obj.TxtMarkBond = false ''''''''設置水印文字的粗細 
obj.MarkRotate = 0 ''''''''水印文字的旋轉角度 
obj.TxtMarkHeight = 25 ''''''''水印文字的高度 
obj.AddTxtMark server.mappath("txtMark.jpg"), "帶你離境", &H00FF00&, 10, 70 
strError=obj.errorinfo ''''''''生成圖片名字,文字顏色即水印在圖片的位置 
if strError<>"" then 
response.write obj.errorinfo 
end if 
obj.free 
set obj=nothing 
%> 


三:添加圖片水印 

複製代碼 代碼以下:

<% 
set obj=server.CreateObject("wsImage.Resize") 
obj.LoadSoucePic server.mappath("25.jpg") ''''''''裝載圖片 
obj.LoadImgMarkPic server.mappath("blend.bmp") ''''''''裝載水印圖片 
obj.Quality=75 
obj.AddImgMark server.mappath("imgMark.jpg"), 315, 220,&hFFFFFF, 70 
strError=obj.errorinfo ''''''''生成圖片名字,文字顏色即水印在圖片的位置 
if strError<>"" then 
response.write obj.errorinfo 
end if 
obj.free 
set obj=nothing 
%> 


其實給圖片添加水印就這麼簡單.而後我在說下WsImage.dll組件的另外兩個主要用法.包括: 
剪裁圖片,生成圖片的縮略圖. 

仍是以我得習慣,用代碼加註釋說明: 
剪裁圖片

複製代碼 代碼以下:

<% 
set obj=server.CreateObject("wsImage.Resize") 
obj.LoadSoucePic server.mappath("25.jpg") 
obj.Quality=75 
obj.cropImage server.mappath("25_crop.jpg"),100,10,200,200 ''''''''定義裁減大小和生成圖片名字 
strError=obj.errorinfo 
if strError<>"" then 
response.write obj.errorinfo 
end if 
obj.free 
set obj=nothing 
%> 


詳細註釋:裁減圖片用到了WsImage的CropImage方法.其中定義生成圖片時候,100,10是左上角的裁減點,即離圖片左邊是100象素,頂端10象素.後兩個200表明的是裁減的寬帶和高和高度. 
生成圖片縮略圖: 

複製代碼 代碼以下:

<% 
set obj=server.CreateObject("wsImage.Resize") 
obj.LoadSoucePic server.mappath("25.jpg") ''''''''加載圖片 
obj.Quality=75 
obj.OutputSpic server.mappath("25_s.jpg"),0.5,0.5,3 ''''''''定義縮略圖的名字即大小 
strError=obj.errorinfo 
if strError<>"" then 
response.write obj.errorinfo 
end if 
obj.free 
set obj=nothing 
%> 


詳細說明: 
產生縮略圖共有四種導出方式: 
(1) obj.OutputSpic server.mappath("25_s.jpg"),200,150,0 
200爲輸出寬,150爲輸出高,這種輸出形式爲強制輸出寬高,可能引發圖片變形。 
(2) obj.OutputSpic server.mappath("25_s.jpg"),200,0,1 
以200爲輸出寬,輸出高將隨比列縮放。 
(3) obj.OutputSpic server.mappath("25_s.jpg"),0,200,2 
以200爲輸出高,輸出寬將隨比列縮放。 
(4) obj.OutputSpic server.mappath("25_s.jpg"),0.5,0.5,3 
第一個0.5表示生成的縮略圖是原圖寬的一半,即表示寬縮小比例。 
第二個0.5表示生成的縮略圖是原圖高的一半,即表示高縮小比例。 
寬高的縮小比例一致意味着將對原圖進行比例縮小。寬高的縮放比例若是大於1,則對原圖進行放大。 
轉自:http://hi.baidu.com/miracle521/blog/item/e3419133fdc00746ac4b5f25.html 
2----------------------------------------------------------------------------------- 
asp.net上傳圖片加水印(文字水印,圖片水印,文字+圖片水印) 
傳圖片加水印(文字水印,圖片水印,文字+圖片水印) 
效果圖: 

ASP組件AspJpeg(加水印)使用方法大全 - 糟老頭 - 糟老頭的地盤500)this.width=500" border=0<

水印ASP組件AspJpeg(加水印)使用方法大全 - 糟老頭 - 糟老頭的地盤500)this.width=500" border=0<

給圖片加水印之後(注意右上角+正下方)
ASP組件AspJpeg(加水印)使用方法大全 - 糟老頭 - 糟老頭的地盤500)this.width=500" border=0<

代碼: 
DrawImg.cs 

複製代碼 代碼以下:
using System;  using System.Drawing;  using System.Drawing.Imaging;  using System.Drawing.Drawing2D;  public class DrawImg  {  private string WorkingDirectory = string.Empty ; //路徑  private string ImageName = string.Empty; //被處理的圖片  private string ImageWater = string.Empty; //水印圖片  private string FontString = string.Empty; //水印文字  enum DealType{NONE,WaterImage,WaterFont,DoubleDo}; //枚舉命令  private DealType dealtype;  public DrawImg()  {}  public string PublicWorkingDirectory  {  get  {  return WorkingDirectory;  }  set  {  WorkingDirectory = value;  }  }  public string PublicImageName  {  get  {  return ImageName;  }  set  {  ImageName = value;  }  }  public string PublicImageWater  {  get  {  return ImageWater;  }  set //設置了水印圖片的話說明是要水印圖片效果的  {  dealtype = DealType.WaterImage;  ImageWater = value;  }  }  public string PublicFontString  {  get  {  return FontString;  }  set //設置了水印文字的話說明是要水印文字效果的  {  dealtype = DealType.WaterFont;  FontString = value;  }  }  public void DealImage()  {  IsDouble();  switch( dealtype )  {  case DealType.WaterFont: WriteFont(); break;  case DealType.WaterImage: WriteImg(); break;  case DealType.DoubleDo: WriteFontAndImg(); break;  }  }  private void IsDouble()  {  if(ImageWater+""!="" && FontString+""!="")  {  dealtype = DealType.DoubleDo;  }  }  private void WriteFont()  {  //set a working directory  //string WorkingDirectory = @"C:\Watermark_src\WaterPic";  //define a string of text to use as the Copyright message  //string Copyright = "Copyright ?2002 - AP Photo/David Zalubowski";  //create a image object containing the photograph to watermark  Image imgPhoto = Image.FromFile(WorkingDirectory + ImageName);  int phWidth = imgPhoto.Width;  int phHeight = imgPhoto.Height;  //create a Bitmap the Size of the original photograph  Bitmap bmPhoto = new Bitmap(phWidth, phHeight, PixelFormat.Format24bppRgb);  bmPhoto.SetResolution(imgPhoto.HorizontalResolution, imgPhoto.VerticalResolution);  //load the Bitmap into a Graphics object  Graphics grPhoto = Graphics.FromImage(bmPhoto);  //------------------------------------------------------------  //Step #1 - Insert Copyright message  //------------------------------------------------------------  //Set the rendering quality for this Graphics object  grPhoto.SmoothingMode = SmoothingMode.AntiAlias;  //Draws the photo Image object at original size to the graphics object.  grPhoto.DrawImage(  imgPhoto, // Photo Image object  new Rectangle(0, 0, phWidth, phHeight), // Rectangle structure  0, // x-coordinate of the portion of the source image to draw.  0, // y-coordinate of the portion of the source image to draw.  phWidth, // Width of the portion of the source image to draw.  phHeight, // Height of the portion of the source image to draw.  GraphicsUnit.Pixel); // Units of measure  //-------------------------------------------------------  //to maximize the size of the Copyright message we will  //test multiple Font sizes to determine the largest posible  //font we can use for the width of the Photograph  //define an array of point sizes you would like to consider as possiblities  //-------------------------------------------------------  int[] sizes = new int[]{16,14,12,10,8,6,4};  Font crFont = null;  SizeF crSize = new SizeF();  //Loop through the defined sizes checking the length of the Copyright string  //If its length in pixles is less then the image width choose this Font size.  for (int i=0 ;i<7; i++)  {  //set a Font object to Arial (i)pt, Bold  //crFont = new Font("arial", sizes[i], FontStyle.Bold);  crFont = new Font("arial",sizes[i],FontStyle.Bold);  //Measure the Copyright string in this Font  crSize = grPhoto.MeasureString(FontString, crFont);  if((ushort)crSize.Width < (ushort)phWidth)  break;  }  //Since all photographs will have varying heights, determine a  //position 5% from the bottom of the image  int yPixlesFromBottom = (int)(phHeight *.05);  //Now that we have a point size use the Copyrights string height  //to determine a y-coordinate to draw the string of the photograph  float yPosFromBottom = ((phHeight - yPixlesFromBottom)-(crSize.Height/2));  //Determine its x-coordinate by calculating the center of the width of the image  float xCenterOfImg = (phWidth/2);  //Define the text layout by setting the text alignment to centered  StringFormat StrFormat = new StringFormat();  StrFormat.Alignment = StringAlignment.Center;  //define a Brush which is semi trasparent black (Alpha set to 153)  SolidBrush semiTransBrush2 = new SolidBrush(Color.FromArgb(153, 0, 0, 0));  //Draw the Copyright string  grPhoto.DrawString(FontString, //string of text  crFont, //font  semiTransBrush2, //Brush  new PointF(xCenterOfImg+1,yPosFromBottom+1), //Position  StrFormat);  //define a Brush which is semi trasparent white (Alpha set to 153)  SolidBrush semiTransBrush = new SolidBrush(Color.FromArgb(153, 255, 255, 255));  //Draw the Copyright string a second time to create a shadow effect  //Make sure to move this text 1 pixel to the right and down 1 pixel  grPhoto.DrawString(FontString, //string of text  crFont, //font  semiTransBrush, //Brush  new PointF(xCenterOfImg,yPosFromBottom), //Position  StrFormat);  imgPhoto = bmPhoto;  grPhoto.Dispose();  //save new image to file system.  imgPhoto.Save(WorkingDirectory + ImageName + "_finally.jpg", ImageFormat.Jpeg);  imgPhoto.Dispose();  //Text alignment  } 
相關文章
相關標籤/搜索