mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 19:00:28 +02:00
Add support for base64 images in image entity URLs
This commit is contained in:
parent
8f1c08a02e
commit
b85935c0c4
1 changed files with 12 additions and 0 deletions
|
@ -254,6 +254,18 @@ NetworkTexturePointer TextureCache::getTexture(const QUrl& url, image::TextureUs
|
|||
if (url.scheme() == RESOURCE_SCHEME) {
|
||||
return getResourceTexture(url);
|
||||
}
|
||||
|
||||
QString urlString = url.toString();
|
||||
if (content.isEmpty() && (urlString.contains("data:image/jpeg;base64,")
|
||||
|| urlString.contains("data:image/png;base64,")
|
||||
|| urlString.contains("data:image/webp;base64,"))) {
|
||||
QString binaryUrl = urlString.split(",")[1];
|
||||
auto decodedContent = binaryUrl.isEmpty() ? QByteArray() : QByteArray::fromBase64(binaryUrl.toUtf8());
|
||||
if (!decodedContent.isEmpty()) {
|
||||
return getTexture(url, type, decodedContent, maxNumPixels, sourceChannel);
|
||||
}
|
||||
}
|
||||
|
||||
QString decodedURL = QUrl::fromPercentEncoding(url.toEncoded());
|
||||
if (decodedURL.startsWith("{")) {
|
||||
return getTextureByUUID(decodedURL);
|
||||
|
|
Loading…
Reference in a new issue