搜尋
首頁後端開發php教程EasyPhpThumbnail PHP图片处理类

EasyPhpThumbnail类可以处理图像和PHP生成缩略图支持GIF、JPG和PNG。这个类是免费的,基于100%的PHP,可用于PHP4(4.3.11以上)和PHP5,易于使用,并提供了超过60的功能操作:

提供的功能包括:调整大小,裁剪,旋转,翻转,另存为,阴影,水印,文字,边框,锐化,模糊,水波纹,反射镜,透视,动画,置换贴图和更多!

使用简介

1、基本使用

<?php<br />include_once('inc/easyphpthumbnail.class.php');<br />$thumb = new easyphpthumbnail;<br />$thumb -> Createthumb('gfx/image.jpg');<br />?>

2、动态显示指定大小图片

<?php<br /> include_once('inc/easyphpthumbnail.class.php');<br /> // Your full path to the images<br /> $dir = str_replace(chr(92),chr(47),getcwd()) . '/gfx/';<br /> // Create the thumbnail<br /> $thumb = new easyphpthumbnail;<br /> $thumb -> Thumbsize = 300;<br /> $thumb -> Createthumb($dir . 'img.jpg');<br />?>

3、生成静态多张本地图片

<?php<br />include_once('inc/easyphpthumbnail.class.php');<br />    // Your full path to the images<br />    $dir = str_replace(chr(92),chr(47),getcwd()) . '/gfx/';<br />$dir_thumbs = str_replace(chr(92),chr(47),getcwd()) . '/thumbs/';<br />if(!is_dir($dir_thumbs)) mkdir($dir_thumbs,0777);<br />    // Create the thumbnail<br />    $thumb = new easyphpthumbnail;<br />    $thumb -> Thumbsize = 600;<br />    $thumb -> Copyrighttext = 'SCUTEPHP.COM';<br />    $thumb -> Copyrightposition = '50% 90%';<br />    $thumb -> Copyrightfonttype = $dir . 'handwriting.ttf';<br />    $thumb -> Copyrightfontsize = 30;<br />    $thumb -> Copyrighttextcolor = '#FFFFFF';<br />   $thumb -> Chmodlevel = '0755';<br />$thumb -> Thumblocation = $dir_thumbs;<br />$thumb -> Thumbsaveas = 'jpg';<br />$thumb -> Thumbprefix = '120px_thumb_';<br />$thumb -> Createthumb(array($dir . '69.jpg', $dir . '70.jpg'), 'file');<br />?>

4、图片大小百分比调整及图片旋转

<?php<br />include_once('inc/easyphpthumbnail.class.php');<br />$thumb = new easyphpthumbnail;<br />$thumb -> Thumbsize = 50;<br />$thumb -> Rotate = 90;//指定度数旋转<br />//$thumb -> Fliphorizontal = true; //水平轴旋转<br />//$thumb -> Flipvertical = true; //垂直轴旋转<br />$thumb -> Percentage = true;<br />$thumb -> Createthumb('gfx/image.jpg');<br />?>

Thumbsize默认是px像素单位,然而要用百分比的话可以设置Percentage属性为ture,Rotate属性设置顺时针旋转度数。

5、给缩略图增加背景阴影

<?php<br />include_once('inc/easyphpthumbnail.class.php');<br />$thumb = new easyphpthumbnail;<br />$thumb -> Backgroundcolor = '#D0DEEE';<br />$thumb -> Shadow = true;<br />$thumb -> Createthumb('gfx/image.jpg');<br />?>

6、给缩略图增加圆角效果

<?php<br />include_once('inc/easyphpthumbnail.class.php');<br />$thumb = new easyphpthumbnail;<br />$thumb -> Backgroundcolor = '#D0DEEE';<br />$thumb -> Clipcorner = array(2,15,0,0,1,1,0);<br />$thumb -> Createthumb('gfx/image.jpg');<br />?>

Clipcorner属性的7个参数含义
[0]: 0=关闭 1=直角 2=圆角
[1]: 裁剪比例
[2]: 随机 - 0=关闭 1=开启
[3]: 左上 - 0=关闭 1=开启
[4]: 左下 - 0=关闭 1=开启
[5]: 右上 - 0=关闭 1=开启
[6]: 右下 - 0=关闭 1=开启

7、给缩略图增加透明效果

<?php<br />include_once('inc/easyphpthumbnail.class.php');<br />$thumb = new easyphpthumbnail;<br />$thumb -> Backgroundcolor = '#0000FF';<br />$thumb -> Clipcorner = array(2,15,0,1,1,1,1);<br />$thumb -> Maketransparent = array(1,1,'#0000FF',30);<br />$thumb -> Createthumb('gfx/image.jpg');<br />?>

8、给缩略图增加框架效果

<?php<br />include_once('inc/easyphpthumbnail.class.php');<br />$thumb = new easyphpthumbnail;<br />$thumb -> Framewidth = 10;<br />$thumb -> Framecolor = '#FFFFFF';<br />$thumb -> Backgroundcolor = '#D0DEEE';<br />$thumb -> Shadow = true;<br />$thumb -> Createthumb('gfx/image.jpg');<br />?>

9、给缩略图增加经典相框效果

<?php<br />include_once('inc/easyphpthumbnail.class.php');<br />$thumb = new easyphpthumbnail;<br />$thumb -> Framewidth = 10;<br />$thumb -> Framecolor = '#FFFFFF';<br />$thumb -> Backgroundcolor = '#D0DEEE';<br />$thumb -> Shadow = true;<br />$thumb -> Binder = true;<br />$thumb -> Binderspacing = 8;<br />$thumb -> Clipcorner = array(2,15,0,1,1,1,0);<br />$thumb -> Createthumb('gfx/image.jpg');<br />?>

10、给缩略图增加水印效果

<?php<br />include_once('inc/easyphpthumbnail.class.php');<br />$thumb = new easyphpthumbnail;<br />$thumb -> Thumbsize = 300;<br />$thumb -> Framewidth = 10;<br />$thumb -> Framecolor = '#00000';<br />$thumb -> Backgroundcolor = '#000000';<br />$thumb -> Clipcorner = array(2,15,0,1,1,1,1);<br />$thumb -> Watermarkpng = 'watermark.png';<br />$thumb -> Watermarkposition = '50% 50%';<br />$thumb -> Watermarktransparency = 70;<br />$thumb -> Createthumb('gfx/image.jpg');<br />?>

11、给缩略图增加短文本及相框

<?php<br />include_once('inc/easyphpthumbnail.class.php');<br />$thumb = new easyphpthumbnail;<br />$thumb -> Thumbsize = 300;<br />$thumb -> Framewidth = 10;<br />$thumb -> Framecolor = '#00000';<br />$thumb -> Borderpng = 'border.png';<br />$thumb -> Copyrighttext = 'MYWEBMYMAIL.COM';<br />$thumb -> Copyrightposition = '50% 80%';<br />$thumb -> Copyrightfonttype = 'handwriting.ttf';<br />$thumb -> Copyrightfontsize = 30;<br />$thumb -> Copyrighttextcolor = '#FFFFFF';<br />$thumb -> Createthumb('gfx/image.jpg');<br />?>

12、缩略图按指定形状裁剪

<?php<br />include_once('inc/easyphpthumbnail.class.php');<br />$thumb = new easyphpthumbnail;<br />$thumb -> Thumbsize = 300;<br />$thumb -> Borderpng = 'cloud.png';<br />$thumb -> Createthumb('gfx/image.jpg');<br />?>

13、指定区域裁剪图片

<?php<br />include_once('inc/easyphpthumbnail.class.php');<br />$thumb = new easyphpthumbnail;<br />$thumb -> Thumbsize = 300;<br />$thumb -> Cropimage = array(2,0,20,20,35,35);<br />$thumb -> Createthumb('gfx/image.jpg');<br />?>

Cropimage属性六个参数说明
[0]: 0=disable 1=enable free crop 2=enable center crop
[1]: 0=percentage 1=pixels
[2]: Crop left
[3]: Crop right
[4]: Crop top
[5]: Crop bottom

14、裁剪出旧照片效果

<?php<br />include_once('inc/easyphpthumbnail.class.php');<br />$thumb = new easyphpthumbnail;<br />$thumb -> Thumbsize = 300;<br />$thumb -> Shadow = true;<br />$thumb -> Backgroundcolor = '#D0DEEE';<br />$thumb -> Cropimage = array(2,0,20,20,35,35);<br />$thumb -> Ageimage = array(1,10,80);<br />$thumb -> Createthumb('gfx/image.jpg');<br />?>

15、属性或方法详解

A

$thumb -> Addtext = array()// 对原始图像添加文字

数组有六个参数

[0]: 0=disable 1=enable

[1]: The text to add

[2]: The position of the text '50% 50%' is the center

[3]: Path to the TTF font (standard systemfont will be used)

[4]: The fontsize to use

[5]: The copyright text color in web format '#000000'

$thumb -> Ageimage = (array) // 应用灰度 array(1,0,0) 或者旧照片效果 array(1,10,80)

数组有六个参数

[0]: Boolean 0=disable 1=enable

[1]: Add noise 0-100, 0=disable

[2]: Sephia depth 0-100, 0=disable (greyscale)

$thumb -> Applyfilter = (boolean)// 应用用户自定义3x3过滤器

B

$thumb -> Backgroundcolor = (string)// Web格式的背景 '#FFFFFF'

$thumb -> Binder = (boolean) // 在缩略图左边画一粘合剂

$thumb -> Binderspacing = (int) // 以像素为单位的空间

$thumb -> Blur = (boolean) // 模糊过滤器

$thumb -> Borderpng = (string) // 边框PNG图片路径

$thumb -> Brightness = (array) // 改变图片亮度

数组有两个参数

[0]: Boolean 0=disable 1=enable

[1]: Brightness -100 to 100

C

$thumb -> Chmodlevel = (string) // 设置保存图片的权限 '0755'

$thumb -> Clipcorner = (array) // 设置圆角 array(2,15,0,1,1,1,0)

数组有七个参数

[0]: 0=disable 1=straight 2=rounded

[1]: Percentage of clipping

[2]: Clip randomly Boolean 0=disable 1=enable

[3]: Clip top left Boolean 0=disable 1=enable

[4]: Clip bottom left Boolean 0=disable 1=enable

[5]: Clip top right Boolean 0=disable 1=enable

[6]: Clip bottom right Boolean 0=disable 1=enable

$thumb -> Colorreplace = (array)// 颜色替换 array(1,'#FFFFFF','#FF6600',60)

数组有四个参数

[0]: Boolean 0=disable 1=enable

[1]: Color to replace in web format: '#00FF00'

[2]: Replacement color in web format: '#FF0000'

[3]: RGB tolerance 0 - 100

$thumb -> Colorize = (array) // 合并图像中的颜色 array(1,0,0,125,0)

数组有五个参数

[0]: Boolean 0=disable 1=enable

[1]: Red component 0 - 255

[2]: Green component 0 - 255

[3]: Blue component 0 - 255

[4]: Opacity level 0 - 127

$thumb -> Contrast = (array)// 改变图像的对比度 array(1,30)

数组有2个参数

[0]: Boolean 0=disable 1=enable

[1]: Contrast -100 to 100

$thumb -> Copyrighttext = (string) // 增加版权文本

$thumb -> Copyrightposition = (string) // 版权文本位置 '50% 50%' is the center

$thumb -> Copyrightfonttype = (string)// TTF文字字体路径 (standard systemfont will be used)

$thumb -> Copyrightfontsize = (int)// 字体大小

$thumb -> Copyrighttextcolor = (string) // 文字Web格式颜色值 '#000000'

$thumb -> Createthumb('imagepath'[,'output']) // 创建或者输出缩略图

函数有两个参数

[string/array]: 原图片完整路径字符串或数组

[string]: Output to the 'screen' (standard) or 'file' (option)

$thumb -> Createbase64('imagepath')// 以base64数据输出图片

函数有一个参数

[string]: Filename for image to convert

$thumb -> Createcanvas(i,i,i,s,b)// 创建一个画布图像 - use with Createthumb()

函数有五个参数

[int]: Canvas width in pixels

[int]: Canvas height in pixels

[int]: Imagetype PHP: IMAGETYPE_PNG, IMAGETYPE_GIF, IMAGETYPE_JPEG

[string]: Fill color

[boolean]: Transparent (boolean)

$thumb -> Create_apng(array, string, int)// 创建APNG缩略图

函数有三个参数

[array]: Array with filenames of PNG images (frames)

[string]: Filename for APNG: 'animation.png'

[int]: Delay between frames in milliseconds

$thumb -> Cropimage = (array)// 裁剪 array(0,0,20,20,20,20)

数组有六个参数

[0]: 0=disable 1=free crop 2=center crop 3=square crop

[1]: 0=percentage 1=pixels

[2]: Crop left

[3]: Crop right

[4]: Crop top

[5]: Crop bottom

$thumb -> Croprotate = (boolean)// 裁剪图片到同样大小的画布并旋转

D

$thumb -> Displacementmap = (array) // 变形

数组有7个参数: array(1,'gfx/displacementmap.jpg',0,0,0,50,50)

[0]: 0=disable 1=enable

[1]: Path to displacement image (grey #808080 is neutral)

[2]: 0=resize the map to fit the image 1=keep original map size

[3]: X coordinate for map position in px

[4]: Y coordinate for map position in px

[5]: X displacement scale in px

[6]: Y displacement scale in px

$thumb -> Displacementmapthumb = (array) // 缩略图变形

数组有七个参数: array(1,'gfx/displacementmap.jpg',0,0,0,50,50)

[0]: 0=disable 1=enable

[1]: Path to displacement image (grey #808080 is neutral)

[2]: 0=resize the map to fit the image 1=keep original map size

[3]: X coordinate for map position in px

[4]: Y coordinate for map position in px

[5]: X displacement scale in px

[6]: Y displacement scale in px

$thumb -> Divisor = (int)// The divisor for the 3x3 filter

E

$thumb -> Edge = (boolean)// 边缘过滤器

$thumb -> Emboss = (boolean) // 浮雕过滤器

F

$thumb -> Fliphorizontal = (boolean)// 在水平轴翻转图像

$thumb -> Flipvertical = (boolean) // 在垂直轴翻转图像

$thumb -> Filter = (array)// 3x3矩阵 array(-1,-1,-1,-1,8,-1,-1,-1,-1)

数组有九个参数

[0]: a1,1

[1]: a1,2

[2]: a1,3

[3]: a2,1

[4]: a2,2

[5]: a2,3

[6]: a3,1

[7]: a3,2

[8]: a3,3

$thumb -> Framewidth = (int)// 添加缩略图框架(像素)

$thumb -> Framecolor = (string) // 框架颜色 '#FFFFFF'

G

$thumb -> Gamma = (array) // Change the gamma of the image array(1,0.5)

Array with 2 values

[0]: Boolean 0=disable 1=enable

[1]: Gamma correction factor

$thumb -> Greyscale = (boolean) // 真彩色灰度转换

I

$thumb -> Inflate = (boolean) // 允许图片放大

$thumb -> insert_exif('source','exifdata')// 插入二进制数据到JPG图片

Function with 2 values

[string]: Source filename for JPG image

[string]: Binary EXIF data to insert in JPG image

K

$thumb -> Keeptransparency = (boolean) //保持原始图像的透明度

L

$thumb -> Lakefx = (array)// 应用一个湖变形图像 array(1,15,80)

Array with 3 values

[0]: Boolean 0=disable 1=enable

[1]: Density of the waves

[2]: Lake area measured from bottom 0 - 100

M

$thumb -> Maketransparent = (array)// 使图像的透明 array(1,0,'#171915',30)

Array with 4 values

[0]: Boolean 0=disable 1=enable

[1]: 0=PNG 1=GIF

[2]: Replacement color in web format: '#FF0000'

[3]: RGB tolerance 0 - 100

$thumb -> Mean = (boolean) // Auto-filter: Mean

$thumb -> Medianfilter = (boolean) // 采用中值滤波器降噪

$thumb -> Mirror = (array)// 滤镜效果 array(1,10,70,40,2)

Array with 5 values

[0]: Boolean 0=disable 1=enable

[1]: Mirror transparency gradient starting strength 0 - 100

[2]: Mirror transparency gradient ending strength 0 - 100

[3]: Mirror area 0 - 100

[4]: Mirror 'gap' between original image and reflection in px

$thumb -> Mirrorcolor = (string) // The Mirror gradient color in web format '#000000'

N

$thumb -> Negative = (boolean) // Create image negative

O

$thumb -> Offset = (int) // The color offset for the filter

P

$thumb -> Palette = (array) // Change the palette of the image array(1,32)

Array with 2 values

[0]: Boolean 0=disable 1=enable

[1]: Amount of colors for the palette

$thumb -> Percentage = (boolean) // Use percentage instead of pixels

$thumb -> Perspective = (array) // Apply a perspective to the image array(1,0,20)

Array with 3 values

[0]: Boolean 0=disable 1=enable

[1]: Direction 0=left 1=right 2=top 3=bottom

[2]: Perspective strength 0 - 100

$thumb -> Perspectivethumb = (array)// Apply a perspective to the thumbnail array(1,0,20)

Array with 3 values

[0]: Boolean 0=disable 1=enable

[1]: Direction 0=left 1=right 2=top 3=bottom

[2]: Perspective strength 0 - 100

$thumb -> Pixelscramble = (array) // Scramble pixels in the image array(1,4,2)

Array with 3 values

[0]: Boolean 0=disable 1=enable

[1]: Pixel range

[2]: Repeats (use with care!)

$thumb -> Pixelate = (array)// Pixelate the image array(1,10)

Array with 2 values

[0]: Boolean 0=disable 1=enable

[1]: Block size in px

$thumb -> Polaroid = (boolean) // Convert the thumbnail to a polaroid look

$thumb -> Polaroidtext = (string) // Write a text on the polaroid

$thumb -> Polaroidfonttype = (string)// The path to the TTF font

$thumb -> Polaroidfontsize = (int) // The fontsize to use

$thumb -> Polaroidtextcolor = (string) // The polaroid text color in web format '#000000'

$thumb -> Polaroidframecolor = (string)// The polaroid frame color in web format '#FFFFFF'

Q

$thumb -> Quality = (int)// The output quality of JPG images

R

$thumb -> Ripplefx = (array) // Apply a ripple deformation to the image array(1,5,15,5,5)

Array with 5 values

[0]: Boolean 0=disable 1=enable

[1]: Amount of horizontal waves

[2]: Amplitude of horizontal waves in px

[3]: Amount of vertical waves

[4]: Amplitude of vertical waves in px

$thumb -> Rotate = (int)// Rotate the image in degrees

$thumb -> read_exif('source') // Read EXIF information from JPG image

Function with 1 value, returns EXIF binary data

[string]: Filename for image with EXIF information

S

$thumb -> Shadow = (boolean) // Add a shadow around the thumbnail

$thumb -> Shading = (array)// Apply shading to the image array(1,70,80,0)

Array with 4 values

[0]: Boolean 0=disable 1=enable

[1]: Shading strength 0 - 100

[2]: Shading area 0 - 100

[3]: Shading direction 0=right 1=left 2=top 3=bottom

$thumb -> Shadingcolor = (string) // The shading gradient color in web format '#000000'

$thumb -> Sharpen = (boolean) // Auto-filter: Sharpen

$thumb -> Square = (boolean) // Draw thumbnail on a square canvas

T

$thumb -> Thumbfilename = (string) // New filename (with extension)

$thumb -> Thumbheight = (int) // Height of the thumbnail in pixels

$thumb -> Thumblocation = (string)// The path to the thumbnail directory

$thumb -> Thumbprefix = (string) // The prefix for the thumb filename

$thumb -> Thumbsaveas = (string)// Convert the thumbnail to a different format, JPG, GIF or PNG

$thumb -> Thumbsize = (int)// Thumbnailsize in pixels for width (landscape) or height (portrait)

$thumb -> Thumbwidth = (int) // Width of the thumbnail in pixels

$thumb -> Twirlfx = (array) // Apply a twirl deformation to the image array(1,20,0)

Array with 3 values

[0]: Boolean 0=disable 1=enable

[1]: Effect strength 0 to 100

[2]: Direction of twirl 0=clockwise 1=anti-clockwise

W

$thumb -> Waterdropfx = (array)// Apply a waterdrop deformation to the image array(1,1.2,400,40)

Array with 4 values

[0]: Boolean 0=disable 1=enable

[1]: Amplitude in px

[2]: Radius in px

[3]: Wavelength in px

$thumb -> Watermarkpng = (string) // The path to the watermark PNG image

$thumb -> Watermarkposition = (string) // The position of the watermark '50% 50%' is the center

$thumb -> Watermarktransparency = (int)// The transparency of the watermark 0 to 100

$thumb -> wipe_exif('source','destination')// Delete EXIF information from JPG image

Function with 2 values

[string]: Source filename for image with EXIF information

[string]: Filename for image without EXIF information

项目地址:http://www.mywebmymail.com/?q=content/easyphpthumbnail-class


陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
您什麼時候使用特質與PHP中的抽像類或接口?您什麼時候使用特質與PHP中的抽像類或接口?Apr 10, 2025 am 09:39 AM

在PHP中,trait適用於需要方法復用但不適合使用繼承的情況。 1)trait允許在類中復用方法,避免多重繼承複雜性。 2)使用trait時需注意方法衝突,可通過insteadof和as關鍵字解決。 3)應避免過度使用trait,保持其單一職責,以優化性能和提高代碼可維護性。

什麼是依賴性注入容器(DIC),為什麼在PHP中使用一個?什麼是依賴性注入容器(DIC),為什麼在PHP中使用一個?Apr 10, 2025 am 09:38 AM

依賴注入容器(DIC)是一種管理和提供對象依賴關係的工具,用於PHP項目中。 DIC的主要好處包括:1.解耦,使組件獨立,代碼易維護和測試;2.靈活性,易替換或修改依賴關係;3.可測試性,方便注入mock對象進行單元測試。

與常規PHP陣列相比,解釋SPL SplfixedArray及其性能特徵。與常規PHP陣列相比,解釋SPL SplfixedArray及其性能特徵。Apr 10, 2025 am 09:37 AM

SplFixedArray在PHP中是一種固定大小的數組,適用於需要高性能和低內存使用量的場景。 1)它在創建時需指定大小,避免動態調整帶來的開銷。 2)基於C語言數組,直接操作內存,訪問速度快。 3)適合大規模數據處理和內存敏感環境,但需謹慎使用,因其大小固定。

PHP如何安全地上載文件?PHP如何安全地上載文件?Apr 10, 2025 am 09:37 AM

PHP通過$\_FILES變量處理文件上傳,確保安全性的方法包括:1.檢查上傳錯誤,2.驗證文件類型和大小,3.防止文件覆蓋,4.移動文件到永久存儲位置。

什麼是無效的合併操作員(??)和無效分配運算符(?? =)?什麼是無效的合併操作員(??)和無效分配運算符(?? =)?Apr 10, 2025 am 09:33 AM

JavaScript中處理空值可以使用NullCoalescingOperator(??)和NullCoalescingAssignmentOperator(??=)。 1.??返回第一個非null或非undefined的操作數。 2.??=將變量賦值為右操作數的值,但前提是該變量為null或undefined。這些操作符簡化了代碼邏輯,提高了可讀性和性能。

什麼是內容安全策略(CSP)標頭,為什麼重要?什麼是內容安全策略(CSP)標頭,為什麼重要?Apr 09, 2025 am 12:10 AM

CSP重要因為它能防範XSS攻擊和限制資源加載,提升網站安全性。 1.CSP是HTTP響應頭的一部分,通過嚴格策略限制惡意行為。 2.基本用法是只允許從同源加載資源。 3.高級用法可設置更細粒度的策略,如允許特定域名加載腳本和样式。 4.使用Content-Security-Policy-Report-Only頭部可調試和優化CSP策略。

什麼是HTTP請求方法(獲取,發布,放置,刪除等),何時應該使用?什麼是HTTP請求方法(獲取,發布,放置,刪除等),何時應該使用?Apr 09, 2025 am 12:09 AM

HTTP請求方法包括GET、POST、PUT和DELETE,分別用於獲取、提交、更新和刪除資源。 1.GET方法用於獲取資源,適用於讀取操作。 2.POST方法用於提交數據,常用於創建新資源。 3.PUT方法用於更新資源,適用於完整更新。 4.DELETE方法用於刪除資源,適用於刪除操作。

什麼是HTTP,為什麼對Web應用程序至關重要?什麼是HTTP,為什麼對Web應用程序至關重要?Apr 09, 2025 am 12:08 AM

HTTPS是一種在HTTP基礎上增加安全層的協議,主要通過加密數據保護用戶隱私和數據安全。其工作原理包括TLS握手、證書驗證和加密通信。實現HTTPS時需注意證書管理、性能影響和混合內容問題。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
3 週前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳圖形設置
3 週前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您聽不到任何人,如何修復音頻
3 週前By尊渡假赌尊渡假赌尊渡假赌
WWE 2K25:如何解鎖Myrise中的所有內容
3 週前By尊渡假赌尊渡假赌尊渡假赌

熱工具

SecLists

SecLists

SecLists是最終安全測試人員的伙伴。它是一個包含各種類型清單的集合,這些清單在安全評估過程中經常使用,而且都在一個地方。 SecLists透過方便地提供安全測試人員可能需要的所有列表,幫助提高安全測試的效率和生產力。清單類型包括使用者名稱、密碼、URL、模糊測試有效載荷、敏感資料模式、Web shell等等。測試人員只需將此儲存庫拉到新的測試機上,他就可以存取所需的每種類型的清單。

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

Atom編輯器mac版下載

Atom編輯器mac版下載

最受歡迎的的開源編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用