AVIF sample file
avif_sample_file_500KB.avif
500.0 KB
image/avif
SHA256 verified
File details
Filename
avif_sample_file_500KB.avifSize500.0 KB (512000 bytes)
MIME type
image/avifExtension
.avifSHA256
13a42913ab5ddf4002f76d3959f14549df7f5785b046277ac18466869df78a10Download commands
Use in scripts and tests
curl -L -o avif_sample_file_500KB.avif \
https://samplefile.com/samples/download/image/avif/avif_sample_file_500KB.avif/
wget -O avif_sample_file_500KB.avif \
https://samplefile.com/samples/download/image/avif/avif_sample_file_500KB.avif/
import requests
url = "https://samplefile.com/samples/download/image/avif/avif_sample_file_500KB.avif/"
resp = requests.get(url)
with open("avif_sample_file_500KB.avif", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/image/avif/avif_sample_file_500KB.avif/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("avif_sample_file_500KB.avif", buf);
# Download and verify SHA256
curl -L -o avif_sample_file_500KB.avif https://samplefile.com/samples/download/image/avif/avif_sample_file_500KB.avif/
echo "13a42913ab5ddf4002f76d3959f14549df7f5785b046277ac18466869df78a10 avif_sample_file_500KB.avif" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/image/avif/avif_sample_file_500KB.avif/").content
assert hashlib.sha256(data).hexdigest() == "13a42913ab5ddf4002f76d3959f14549df7f5785b046277ac18466869df78a10"
More AVIF files
Other AVIF Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
avif_sample_file_1MB.avif |
1.0 MB | c6048b6a74bb2b8d… |
Download |
avif_sample_file_200KB.avif |
200.0 KB | 9496a7557c7a6b72… |
Download |
avif_sample_file_50KB.avif |
50.0 KB | ee4cd4cc5b809a07… |
Download |
Learn more