Donner
C++20 SVG rendering library
Loading...
Searching...
No Matches
donner::svg::UrlLoader Class Reference

Utility class for loading a URI or decoding a data URL. More...

#include "donner/svg/resources/UrlLoader.h"

Classes

struct  Result
 Result of loading a URI or decoding a data URL. More...
 

Public Member Functions

 UrlLoader (ResourceLoaderInterface &resourceLoader)
 Create a new URL loader that uses the given resource loader to fetch external resources.
 
 ~UrlLoader ()=default
 Destructor.
 
 UrlLoader (const UrlLoader &)=delete
 
 UrlLoader (UrlLoader &&)=delete
 
UrlLoaderoperator= (const UrlLoader &)=delete
 
UrlLoaderoperator= (UrlLoader &&)=delete
 
std::variant< Result, UrlLoaderErrorfromUri (std::string_view uri)
 Read an image from a URI, which can be a file path, a URL, or a data URL (e.g.
 

Detailed Description

Utility class for loading a URI or decoding a data URL.


Class Documentation

◆ donner::svg::UrlLoader::Result

struct donner::svg::UrlLoader::Result

Result of loading a URI or decoding a data URL.

Collaboration diagram for donner::svg::UrlLoader::Result:
[legend]
Class Members
vector< uint8_t > data Loaded data, either from a data URL or from a fetched URI.
string mimeType MIME type of the data, if known. Otherwise, an empty string.

Constructor & Destructor Documentation

◆ UrlLoader()

donner::svg::UrlLoader::UrlLoader ( ResourceLoaderInterface & resourceLoader)
inlineexplicit

Create a new URL loader that uses the given resource loader to fetch external resources.

Parameters
resourceLoaderResource loader to use for fetching external resources.

Member Function Documentation

◆ fromUri()

std::variant< UrlLoader::Result, UrlLoaderError > donner::svg::UrlLoader::fromUri ( std::string_view uri)

Read an image from a URI, which can be a file path, a URL, or a data URL (e.g.

"data:image/png;base64,...").

Parameters
uriURI of the image, or data URL containing a base64 embedded image.
Returns
Loaded image data or an error code.

The documentation for this class was generated from the following files: