WEBP sample file
webp_100x100_sample_file_1KB.webp
886 B
image/webp
SHA256 verified
File details
Filename
webp_100x100_sample_file_1KB.webpSize886 B (886 bytes)
MIME type
image/webpExtension
.webpSHA256
609b554a49403d6a135ffbd60aa5e9464b3b1ad125b789bf152922c99a12dc00Download commands
Use in scripts and tests
curl -L -o webp_100x100_sample_file_1KB.webp \
https://samplefile.com/samples/download/image/webp/webp_100x100_sample_file_1KB.webp/
wget -O webp_100x100_sample_file_1KB.webp \
https://samplefile.com/samples/download/image/webp/webp_100x100_sample_file_1KB.webp/
import requests
url = "https://samplefile.com/samples/download/image/webp/webp_100x100_sample_file_1KB.webp/"
resp = requests.get(url)
with open("webp_100x100_sample_file_1KB.webp", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/image/webp/webp_100x100_sample_file_1KB.webp/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("webp_100x100_sample_file_1KB.webp", buf);
# Download and verify SHA256
curl -L -o webp_100x100_sample_file_1KB.webp https://samplefile.com/samples/download/image/webp/webp_100x100_sample_file_1KB.webp/
echo "609b554a49403d6a135ffbd60aa5e9464b3b1ad125b789bf152922c99a12dc00 webp_100x100_sample_file_1KB.webp" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/image/webp/webp_100x100_sample_file_1KB.webp/").content
assert hashlib.sha256(data).hexdigest() == "609b554a49403d6a135ffbd60aa5e9464b3b1ad125b789bf152922c99a12dc00"
More WEBP files
Other WEBP Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
webp_1000x600_sample_file_8KB.webp |
7.9 KB | 197a158d85e4ada0… |
Download |
webp_2000x1200_sample_file_14KB.webp |
13.1 KB | 8d53ee0906c1c65e… |
Download |
webp_500x300_sample_file_4KB.webp |
4.0 KB | d65875120ede797a… |
Download |
Learn more