I'm trying to display some Wikipedia articles containing math in SVG
images
in QtWebView, though I can't figure out how to set width
and height
attributes of the image. QtWebView
will ignore these attributes and when I
omit them the image is very small.
You can test it as follows: Download this HTML editor. Go to this web page and download e.g. this SVG image.
Create img element, reflecting the styling in Wikipedia:
<img src="e15d3619d42b28662c5952c9ece60cd928e31774.svg" style="vertical-align: -0.671ex; width:25.517ex; height:2.343ex;">
And the image will be ignored.
The following works, but the image is very small.
<img src="e15d3619d42b28662c5952c9ece60cd928e31774.svg" >
How to display the image with the right size (width and height)?
Try to use this HTML approach for changing an SVG image dimensions:
Very often SVG height or width are incorrectly calculated in WebKit browsers. To solve this problem use this CSS style:
I've recently found quite useful and interesting post: CSS Tricks: How to Scale SVG.
Or try this Python approach for changing an SVG image dimensions described Here.
And, of course, you can call
setHtml()
public function with argument:Or assign the size directly via Qt:
Also look at official
Qt SVG Documentation
describing XML-based approach Here.