I love that image.delivery pulls the prompt out of the image metadata (so myself and others can reference it later), but it doesn’t support albums… Prompt for above
I love that image.delivery pulls the prompt out of the image metadata (so myself and others can reference it later), but it doesn’t support albums… Prompt for above
This works great! I wrote a python script to make it faster.
Obviously, modify to fit your needs…
Input file:
Output file will look like this:
Script:
def convert_urls(input_file, output_file): with open(input_file, 'r') as f: urls = f.read().splitlines() with open(output_file, 'w') as f: f.write('Click on an image to see prompt details.\n\n') for i, url in enumerate(urls, start=1): id = url.split('/')[-1] f.write(f'[![](https://fast.image.delivery/{id}.jpg)][{i}]\n') f.write('\n') for i, url in enumerate(urls, start=1): f.write(f'[{i}]: {url}\n') # Usage convert_urls('input.txt', 'output.txt')