導航:首頁 > 源碼編譯 > 水印的源碼

水印的源碼

發布時間:2022-01-29 18:09:11

Ⅰ PSD水印源碼怎麼製作

Photoshop製作圖片透明水印教程
詳細出處參考:http://www.jb51.net/photoshop/6212.html

Ⅱ 關於嵌入和提取數字水印的源碼或設計方案,急求解答,謝謝

。。。。。。。。。

Ⅲ 基於DCT數字水印的源代碼,怎麼弄那個水印圖片

在畫圖工具中,自己生成,選擇「屬性」選擇自己想要的大小64*64或32*32像素,選取黑白,選取自己想寫的字或字母,確定字體和大小,就可以生成二值圖形啦!

php批量水印添加源碼

這個要用到文件列遍函數
$dir="./images/*.jpg"; //以jpg圖片為例
$image_files=glob($dir); //將目錄中指定類型文件url讀入$image_files數組
然後用循環語句進行添加水印
for($i=0;$i<count($image_files);$i++)
{
//調用圖片文件
$this_image=$image_files[$i];
//添加水印代碼
}

Ⅳ 求asp.net圖片水印源碼(含gif圖片)

/// <summary>
/// 在圖片上增加文字水印
/// </summary>
/// <param name="Path">原伺服器圖片路徑</param>
/// <param name="Path_sy">生成的帶文字水印的圖片路徑</param>
protected void AddWater(string Path, string Path_sy)
{
string addText = "51aspx.com";
System.Drawing.Image image = System.Drawing.Image.FromFile(Path);
System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(image);
g.DrawImage(image, 0, 0, image.Width, image.Height);
System.Drawing.Font f = new System.Drawing.Font("Verdana", 60);
System.Drawing.Brush b = new System.Drawing.SolidBrush(System.Drawing.Color.Green);

g.DrawString(addText, f, b, 35, 35);
g.Dispose();

image.Save(Path_sy);
image.Dispose();
}

/**/
/// <summary>
/// 在圖片上生成圖片水印
/// </summary>
/// <param name="Path">原伺服器圖片路徑</param>
/// <param name="Path_syp">生成的帶圖片水印的圖片路徑</param>
/// <param name="Path_sypf">水印圖片路徑</param>
protected void AddWaterPic(string Path, string Path_syp, string Path_sypf)
{
System.Drawing.Image image = System.Drawing.Image.FromFile(Path);
System.Drawing.Image Image = System.Drawing.Image.FromFile(Path_sypf);
System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(image);
g.DrawImage(Image, new System.Drawing.Rectangle(image.Width - Image.Width, image.Height - Image.Height, Image.Width, Image.Height), 0, 0, Image.Width, Image.Height, System.Drawing.GraphicsUnit.Pixel);
g.Dispose();

image.Save(Path_syp);
image.Dispose();
}

Ⅵ 高分求高手幫忙:LSB數字水印的源代碼,圖片瀏覽器的源代碼,恩最好有簡單的程序說明

不採用 matlab:
完整的程序:
參考資料 上方 LSBEmbeding.rar 約 900K, 是 VC++ 程序。
頁的最下面還有少數 LSB VC++ 程序連接。

Ⅶ 高分求 vb 文字 水印 源碼 文字要有透明度

方法1:先用Image復制一個圖像的副本,再用TextOut或DrawText在副本上放文字,然後用AlphaBlend與原圖混合再輸出就可以了(不知道是不是你條件5中限制使用的方法,暫時先不寫代碼了)
方法2:使用DIB,在像素數組中運算,比較復雜。

Ⅷ 求一個窗口化的LSB圖片數字水印演算法的源代碼,MFC平台實現。

我有,但須花人民幣。

Ⅸ 下載的源碼,上傳網站後圖片都帶水印,如何處理這個水印呢

如果搜不到這個網址,很可能這個水印是個圖片。
你可以點擊顯示出來的有網址的圖片,看看具體的URL是什麼,可能有2個圖片文件夾,一個是有水印的一個是沒有的。
或者還有可能就是水印是在客戶端請求是,由代碼合成到圖片上,顯示出來的。只要找到這部分代碼,刪除,就可以了。

Ⅹ 我有個網站的源碼,裡面給提交的照片自動打上了水印,我如何修改水印為自己的文字圖形

把打水印的那段源碼改成你自己的就行了,你看看水印的具體名字,再在源碼里搜就OK了

閱讀全文

與水印的源碼相關的資料

熱點內容
cad中生成面的命令 瀏覽:758
clp在單片機中是什麼意思 瀏覽:144
還珠格格韓國源碼 瀏覽:892
linuxpostgresql配置 瀏覽:873
雲伺服器如何掛機賺錢 瀏覽:549
null是java關鍵字 瀏覽:688
看過讀過聽過是什麼APP 瀏覽:834
java判斷數據是否存在 瀏覽:15
一巴掌解壓圖片 瀏覽:976
自己搭建的伺服器如何安全 瀏覽:753
miui源碼公開 瀏覽:447
linuxbin是什麼 瀏覽:332
php小項目留言板 瀏覽:955
得推論壇系統源碼v24 瀏覽:67
android根據號碼查詢聯系人 瀏覽:496
命令行ftp上傳 瀏覽:338
大爺程序員 瀏覽:198
自私的基因pdf 瀏覽:479
程序員是怎麼做優化設置 瀏覽:251
命令與征服現代沖突視頻 瀏覽:678