Is it possible to embed multiple images in SVG file to achieve similar effect like with ICO file?
In case of ICO, the file contains several versions/sizes of an image, so the smaller ones can omit some details or have use ratios which may render the scaled down image more readable.
Edit
I am not interested in any particular application, and I intentionally do not take into account for what ICO format was intended (used only as an example).
For further discussion lets use Applications-database.svg, witch contains four different images, as an example:
The picture on the right contains less details, and has different proportions, but is much more readable when scaled down:
However the Applications-database.svg does not switch between individual pictures automatically and only the biggest and the most detail image is normally visible.
So the question is: Can I with CSS/SVG hide/show different image (maybe <symbol>
) when the whole image is resized (i.e. show symbol-1 if width > 50 else show symbol-2)?