SVG sample file
svg_100x100_sample_file_1KB.svg
248 B
image/svg+xml
SHA256 verified
File details
Filename
svg_100x100_sample_file_1KB.svgSize248 B (248 bytes)
MIME type
image/svg+xmlExtension
.svgSHA256
0a7943b241d1483eb99c7f10fb787c291e0c5dead8ba5540af365d058d56a2b6Download commands
Use in scripts and tests
curl -L -o svg_100x100_sample_file_1KB.svg \
https://samplefile.com/samples/download/image/svg/svg_100x100_sample_file_1KB.svg/
wget -O svg_100x100_sample_file_1KB.svg \
https://samplefile.com/samples/download/image/svg/svg_100x100_sample_file_1KB.svg/
import requests
url = "https://samplefile.com/samples/download/image/svg/svg_100x100_sample_file_1KB.svg/"
resp = requests.get(url)
with open("svg_100x100_sample_file_1KB.svg", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/image/svg/svg_100x100_sample_file_1KB.svg/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("svg_100x100_sample_file_1KB.svg", buf);
# Download and verify SHA256
curl -L -o svg_100x100_sample_file_1KB.svg https://samplefile.com/samples/download/image/svg/svg_100x100_sample_file_1KB.svg/
echo "0a7943b241d1483eb99c7f10fb787c291e0c5dead8ba5540af365d058d56a2b6 svg_100x100_sample_file_1KB.svg" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/image/svg/svg_100x100_sample_file_1KB.svg/").content
assert hashlib.sha256(data).hexdigest() == "0a7943b241d1483eb99c7f10fb787c291e0c5dead8ba5540af365d058d56a2b6"
More SVG files
Other SVG Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
svg_1000x600_sample_file_1KB.svg |
249 B | 17357e113e6fae3d… |
Download |
svg_2000x1200_sample_file_1KB.svg |
250 B | db96b8b82081a535… |
Download |
svg_500x300_sample_file_1KB.svg |
248 B | e44bede34ac0d76c… |
Download |
svg_dashboard_wireframe_sample.svg |
1.7 KB | 169a1a3523465005… |
Download |
svg_floorplan_overlay_sample.svg |
1.5 KB | 8306cddf0238d23a… |
Download |
svg_logo_mark_sample.svg |
888 B | e85020f126f6954d… |
Download |
Learn more