PSD sample file
psd_high_resolution_print_sample.psd
197.2 KB
image/vnd.adobe.photoshop
SHA256 verified
File details
Filename
psd_high_resolution_print_sample.psdSize197.2 KB (201944 bytes)
MIME type
image/vnd.adobe.photoshopExtension
.psdSHA256
613a5c22e0afdaed8fc3e2c11ab0f30267c515cecb27165833b0ed3833d0f51fDownload commands
Use in scripts and tests
curl -L -o psd_high_resolution_print_sample.psd \
https://samplefile.com/samples/download/image/psd/psd_high_resolution_print_sample.psd/
wget -O psd_high_resolution_print_sample.psd \
https://samplefile.com/samples/download/image/psd/psd_high_resolution_print_sample.psd/
import requests
url = "https://samplefile.com/samples/download/image/psd/psd_high_resolution_print_sample.psd/"
resp = requests.get(url)
with open("psd_high_resolution_print_sample.psd", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/image/psd/psd_high_resolution_print_sample.psd/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("psd_high_resolution_print_sample.psd", buf);
# Download and verify SHA256
curl -L -o psd_high_resolution_print_sample.psd https://samplefile.com/samples/download/image/psd/psd_high_resolution_print_sample.psd/
echo "613a5c22e0afdaed8fc3e2c11ab0f30267c515cecb27165833b0ed3833d0f51f psd_high_resolution_print_sample.psd" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/image/psd/psd_high_resolution_print_sample.psd/").content
assert hashlib.sha256(data).hexdigest() == "613a5c22e0afdaed8fc3e2c11ab0f30267c515cecb27165833b0ed3833d0f51f"
More PSD files
Other PSD Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
psd_single_layer_design_sample.psd |
6.3 KB | c2b457581d549f4b… |
Download |
psd_two_layer_comp_sample.psd |
13.8 KB | 406ddf7cbf5a1065… |
Download |
Learn more