HEIC sample file
heic_sample_file_50KB.heic
50.7 KB
image/heic
SHA256 verified
File details
Filename
heic_sample_file_50KB.heicSize50.7 KB (51959 bytes)
MIME type
image/heicExtension
.heicSHA256
ad2c4e7f2dd06de153b8820ca9ae3ec080b66461b4041e6a7010aedb6fd337c1Download commands
Use in scripts and tests
curl -L -o heic_sample_file_50KB.heic \
https://samplefile.com/samples/download/image/heic/heic_sample_file_50KB.heic/
wget -O heic_sample_file_50KB.heic \
https://samplefile.com/samples/download/image/heic/heic_sample_file_50KB.heic/
import requests
url = "https://samplefile.com/samples/download/image/heic/heic_sample_file_50KB.heic/"
resp = requests.get(url)
with open("heic_sample_file_50KB.heic", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/image/heic/heic_sample_file_50KB.heic/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("heic_sample_file_50KB.heic", buf);
# Download and verify SHA256
curl -L -o heic_sample_file_50KB.heic https://samplefile.com/samples/download/image/heic/heic_sample_file_50KB.heic/
echo "ad2c4e7f2dd06de153b8820ca9ae3ec080b66461b4041e6a7010aedb6fd337c1 heic_sample_file_50KB.heic" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/image/heic/heic_sample_file_50KB.heic/").content
assert hashlib.sha256(data).hexdigest() == "ad2c4e7f2dd06de153b8820ca9ae3ec080b66461b4041e6a7010aedb6fd337c1"
More HEIC files
Other HEIC Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
heic_sample_file_1MB.heic |
1.0 MB | 90bdd8d29ad41b2c… |
Download |
heic_sample_file_200KB.heic |
201.2 KB | baea1af008868760… |
Download |
heic_sample_file_500KB.heic |
503.6 KB | f7a899ad03ebcc38… |
Download |
Learn more