extract first frame from animated GIF
Last update
2024-03-06
2024-03-06
« — »
1 2 3 4 5 | # from file convert image.gif[0] first_frame.gif # from stdin cat image.gif | convert -'[0]' first_frame.gif |
Source: stackoverflow