GHS pictograms as SVG download

If you are not interested in the details, you can download the GHS labels here. The labels have been converted from EPS to SVG and can therefore be used directly on web pages or different.

https://www.unece.org/trans/danger/publi/ghs/pictograms.html contains the images.

This is the file with all variations.

If DXF is desired, Inkscape SVG files can easily be saved as DXF files.
The script used:

1
2
3
4
5
6
7
8
9
#!/bin/sh
# put this file in the directory with eps files and run it
for thefilename in *.eps
do
	file=$(basename "$thefilename")
	ext="${file##*.}"
	filename="${file%.*}"
	inkscape  $file --export-plain-svg=$filename'.svg'
done

The pictograms

These pictograms are SVG format. You can directly download the images or use the link to get them all at once.

Leave a comment