Update README.md

This commit is contained in:
Hermet Park 2020-09-16 19:45:00 +09:00 committed by GitHub
parent a09a1ee5e9
commit f0e56b92d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,7 +73,7 @@ canvas->push(move(circle)); //push circle drawing command
``` ```
This code result look like this. This code result look like this.
<p align="center"> <p align="center">
<img width="416" height="411" src="https://github.com/Samsung/thorvg/blob/master/res/example_shapes.jpg"> <img width="416" height="411" src="https://github.com/Samsung/thorvg/blob/master/res/example_shapes.png">
</p> </p>
Next, this code snippet shows you how to draw SVG image. Next, this code snippet shows you how to draw SVG image.
@ -85,7 +85,7 @@ canvas->push(move(picture)); //push picture drawing command
``` ```
And here is the result. And here is the result.
<p align="center"> <p align="center">
<img width="391" height="400" src="https://github.com/Samsung/thorvg/blob/master/res/example_tiger.jpg"> <img width="391" height="400" src="https://github.com/Samsung/thorvg/blob/master/res/example_tiger.png">
</p> </p>
Begin rendering & finish it at a particular time. Begin rendering & finish it at a particular time.