Skip to content

Commit

Permalink
Merge pull request #90573 from timothyqiu/svg-image
Browse files Browse the repository at this point in the history
Fix error when loading SVG imported as Image
  • Loading branch information
akien-mga committed Apr 14, 2024
2 parents 9b0b7af + 66a3a94 commit 122054c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions modules/svg/image_loader_svg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,17 @@ void ImageLoaderSVG::get_recognized_extensions(List<String> *p_extensions) const
}

Error ImageLoaderSVG::load_image(Ref<Image> p_image, Ref<FileAccess> p_fileaccess, BitField<ImageFormatLoader::LoaderFlags> p_flags, float p_scale) {
String svg = p_fileaccess->get_as_utf8_string();
const uint64_t len = p_fileaccess->get_length() - p_fileaccess->get_position();
Vector<uint8_t> buffer;
buffer.resize(len);
p_fileaccess->get_buffer(buffer.ptrw(), buffer.size());

String svg;
Error err = svg.parse_utf8((const char *)buffer.ptr(), buffer.size());
if (err != OK) {
return err;
}

Error err;
if (p_flags & FLAG_CONVERT_COLORS) {
err = create_image_from_string(p_image, svg, p_scale, false, forced_color_map);
} else {
Expand Down

0 comments on commit 122054c

Please sign in to comment.