Last active
December 5, 2020 21:12
-
-
Save jfarmer/6ddb1a9d629a4bd78a4f856efa362ef6 to your computer and use it in GitHub Desktop.
Create PNG of yesterday's NYTimes homepage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The -1d in the date command means yesterday, so, e.g., -2d would be two days ago | |
# Change the output file extension if you want another image type | |
# "-resize 1440x" resizes to 1440px wide while preserving aspect ratio | |
curl "https://static01.nyt.com/images/$(date -v -1d +"%Y/%m/%d")/nytfrontpage/scan.pdf" | convert -density 600x600 -antialias - -resize 1440x -quality 100 "output_file_name.png" nyt_homepage_yesterday.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment