There is a link to a picture of the .svg format (' http://en-mile.ru/upload/iblock/215/2156f974bc6fba7d3750322ada59138c.svg ') When you click the white screen link, the page has a code.

Question: how can I get a picture, can manipulate some code or use the necessary libraries. Or is it impossible to get it, and I misled something?

    3 answers 3

    This is not a html page, this is a file.

    apparently, it contains within itself an image in the svg format of the “white square” type.

    Here's your browser and shows "white square on a white background."

      This svg file contains the following

      <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" width="11.011px" height="11.011px" viewBox="0 0 11.011 11.011" enable-background="new 0 0 11.011 11.011" xml:space="preserve"> <circle fill="none" stroke="#FFFFFF" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="5.485" cy="5.506" r="1.945"/> <line fill="none" stroke="#FFFFFF" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="2.229" y1="5.506" x2="0.324" y2="5.506"/> <line fill="none" stroke="#FFFFFF" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="10.687" y1="5.506" x2="8.782" y2="5.506"/> <line fill="none" stroke="#FFFFFF" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="5.505" y1="8.782" x2="5.505" y2="10.687"/> <line fill="none" stroke="#FFFFFF" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="5.505" y1="0.324" x2="5.505" y2="2.229"/> <line fill="none" stroke="#FFFFFF" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="2.896" y1="8.115" x2="2.283" y2="8.728"/> <line fill="none" stroke="#FFFFFF" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="8.697" y1="2.314" x2="8.114" y2="2.897"/> <line fill="none" stroke="#FFFFFF" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="8.113" y1="8.115" x2="8.781" y2="8.783"/> <line fill="none" stroke="#FFFFFF" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="2.291" y1="2.292" x2="2.896" y2="2.897"/> </svg> 

      As we see it is a set of circles and lines of white. You have already accessed the pictures.

        apparently, it contains within itself an image in the svg format of the “white square” type.

        Here's your browser and shows "white square on a white background

        Notice the lines of code in the SVG source file:

         fill="none" stroke="#FFFFFF" 

        There is no fill, the line is white, so it is not visible. Changed to - stroke = "black" and zoomed in through viewport - width = "96px" height = "96px" and viewBox = "0 0 12 12" , but it was too small /

         <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="96px" height="96px" viewBox="0 0 12 12" > <circle fill="none" stroke="black" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="5.485" cy="5.506" r="1.945"/> <line fill="none" stroke="black" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="2.229" y1="5.506" x2="0.324" y2="5.506"/> <line fill="none" stroke="black" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="10.687" y1="5.506" x2="8.782" y2="5.506"/> <line fill="none" stroke="black" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="5.505" y1="8.782" x2="5.505" y2="10.687"/> <line fill="none" stroke="black" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="5.505" y1="0.324" x2="5.505" y2="2.229"/> <line fill="none" stroke="black" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="2.896" y1="8.115" x2="2.283" y2="8.728"/> <line fill="none" stroke="black" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="8.697" y1="2.314" x2="8.114" y2="2.897"/> <line fill="none" stroke="black" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="8.113" y1="8.115" x2="8.781" y2="8.783"/> <line fill="none" stroke="black" stroke-width="0.648" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="2.291" y1="2.292" x2="2.896" y2="2.897"/> </svg>