大约有 10,336 项符合查询结果(耗时:0.0204秒) [XML]
How do I scale a stubborn SVG embedded with the tag?
I have some SVG files that specifies width and height as well as viewbox like this:
9 Answers
...
Do I use , , or for SVG files?
...ould I use <img> , <object> , or <embed> for loading SVG files into a page in a way similar to loading a jpg , gif or png ?
...
How can I make an svg scale with its parent container?
I want to have an inline svg element's contents scale when size is non-native. Of course I could have it as a separate file and scale it like that.
...
Convert SVG to PNG in Python
How do I convert an svg to png , in Python? I am storing the svg in an instance of StringIO . Should I use the pyCairo library? How do I write that code?
...
Convert SVG to image (JPEG, PNG, etc.) in the browser
I want to convert SVG into bitmap images (like JPEG, PNG, etc.) through JavaScript.
9 Answers
...
Does SVG support embedding of bitmap images?
Is an SVG image purely vectorial or can we combine bitmap images into an SVG image ?
How about transforms applied on the bitmap images (perspective, mappings, etc.) ?
...
Convert SVG image to PNG with PHP
...with PHP/Imagick, which uses ImageMagick:
$usmap = '/path/to/blank/us-map.svg';
$im = new Imagick();
$svg = file_get_contents($usmap);
/*loop to color each state as needed, something like*/
$idColorArray = array(
"AL" => "339966"
,"AK" => "0099FF"
...
,"WI" => "FF4B00"
...
Drawing an SVG file on a HTML5 canvas
Is there a default way of drawing an SVG file onto a HTML5 canvas? Google Chrome supports loading the SVG as an image (and simply using drawImage ), but the developer console does warn that resource interpreted as image but transferred with MIME type image/svg+xml .
...
How can I remove or replace SVG content?
I have a piece of JavaScript code which creates (using D3.js) an svg element which contains a chart. I want to update the chart based on new data coming from a web service using AJAX, the problem is that each time I click on the update button, it generates a new svg , so I want to remove the old ...
Resizing SVG in html?
So, I have an SVG file in HTML, and one of the things I've heard about the format is that it doesn't get all pixelated when you zoom in on it.
...