table of contents
other versions
- trixie 3.2.4+ds-1
- testing 3.2.6+ds-1
- unstable 3.4.0+ds-1
- experimental 3.3.4+ds-2
| IMG_LoadSizedSVG_IO(3) | SDL_image3 FUNCTIONS | IMG_LoadSizedSVG_IO(3) |
NAME¶
IMG_LoadSizedSVG_IO - Load an SVG image, scaled to a specific size.
SYNOPSIS¶
#include <SDL3_image/SDL_image.h>
SDL_Surface * IMG_LoadSizedSVG_IO(SDL_IOStream *src, int width, int height);
DESCRIPTION¶
Since SVG files are resolution-independent, you specify the size you would like the output image to be and it will be generated at those dimensions.
Either width or height may be 0 and the image will be auto-sized to preserve aspect ratio.
When done with the returned surface, the app should dispose of it with a call to SDL_DestroySurface().
FUNCTION PARAMETERS¶
RETURN VALUE¶
Returns a new SDL surface, or NULL on error.
AVAILABILITY¶
This function is available since SDL_image 3.0.0.
SEE ALSO¶
| SDL_image 3.3.4 | SDL_image |