display all logos on a page or map

44 Views Asked by At

I'm trying to find a way to display a list of 500+ logos from 500+ url's. I want to make a global map of all companies with their respective logos that's i have coming from a url http://www.xxxxxx/wp-content/uploads/QOPIUS.png The results could be like this Image example from medium

I've tried some BI tools like Tableau or MS Report but none of them is doing the job to make a map and manually this weird.

If any ideas from there, you are welcome. Thx.

1

There are 1 best solutions below

1
On

There are several ways to do this. Simple solution: If you have your URL paths in a file, just read the file line by line and download all logos. I am using bash for my example:

while read line; do curl -O $line; done < urls.txt 

Once you have all your logos use imageMagick to concatenate your logos into one big jpg/png/other_file_format:

montage -mode concatenate -tile 4x *.jpg map.jpg

For more information see imageMagick documentation: http://www.imagemagick.org/Usage/montage/