arachnid/shield
Composer 安装命令:
composer require arachnid/shield
包简介
A client for scanning media for CSAM using the Arachnid Shield API.
README 文档
README
This library is a PHP Client for the Arachnid Shield API.
The Arachnid Shield API is a free HTTP API that implements the scanning of media (images or videos) for proactive detection of known CSAM and harmful/abusive images of children. Maintained by the Canadian Centre for Child Protection, it offers API endpoints to scan media (images or videos) against an existing database of known CSAM images.
Installation
You may install the client in your PHP project using composer:
composer require arachnid/shield
Usage
An example of scanning a media file on disk for CSAM:
use ArachnidShield\ArachnidShield; include __DIR__ . "/../vendor/autoload.php"; $shield = new ArachnidShield("username", "password"); $scannedMedia = $shield->scanMediaFromFile("path/to/image.jpeg"); if ($scannedMedia->matchesKnownMedia()) { echo "Scanned media has matches to known material"; }
An example of scanning a media file hosted at a website you own:
use ArachnidShield\ArachnidShield; include __DIR__ . "/../vendor/autoload.php"; $shield = new ArachnidShield("username", "password"); $scannedMedia = $shield->scanMediaFromUrl("https://example.com/path/to/image.jpeg"); if ($scannedMedia->matchesKnownMedia()) { echo "Scanned media has matches to known material"; }
统计信息
- 总下载量: 211
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-07-19