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