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