Get All Images
What it does
Section titled “What it does”The Get All Images node collects the images on the page you’re currently viewing.
It returns a list with image URLs and useful details (like size and alt text) so you can audit, download, or analyze images.
When to use it
Section titled “When to use it”- You want to check if images are missing alt text (accessibility audit).
- You want to collect product photos from a page.
- You want to compare how competitors use images.
- You want to build an image list and then download/process each image.
How it works
Section titled “How it works”The node scans the page for images (including background images if enabled) and returns them as a list.
graph LR
Page[Web Page] --> Extractor{Image Extractor}
Extractor --> Regular[Regular Images]
Extractor --> Background[Background Images]
Extractor --> Icons[Icons & Graphics]
style Extractor fill:#6d28d9,stroke:#fff,color:#fff
Setup guide
Section titled “Setup guide”- Open the page you want to scan.
- Choose what to include (background images, hidden images).
- Set a max limit if the page has lots of images.
- Run the workflow and use the output list in the next step.
Practical example: Content audit
Section titled “Practical example: Content audit”Let’s extract all images from a website to check for missing alt text and oversized files.
What you configure:
- Hidden & Background Images: Decide if you want images that aren’t immediately visible.
- Max Images: Limit how many images to collect (e.g., 100).
- Include Alt Text: Capture the text description associated with each image.
What you get:
- A list of images with details including:
- URL: The link to the image file.
- Alt Text: The description used for accessibility.
- Size: Width, height, and estimated file size.
- Type: Whether it’s a regular image or part of the background.
- A summary of total images found and their file types (JPG, PNG, etc.).
Common settings
Section titled “Common settings”| Setting | Purpose | When to Use |
|---|---|---|
| Include Hidden Images | Find images not visible on screen | For complete content audits |
| Include Background Images | Extract CSS background images | For design analysis and visual inventory |
| Max Images | Limit number of results | For large pages with many images |
Troubleshooting
Section titled “Troubleshooting”- No images found: the page may still be loading. Try running again after images appear.
- Missing some images: some sites load images only after scrolling. Scroll the page first, then run the workflow.
- Too many results: lower
maxImages, then filter by size or file type.