use new_from_memory_copy

This commit is contained in:
Pete Matsyburka
2026-05-31 14:28:35 +03:00
parent d5738a0631
commit 9fcaef4cf7
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -202,13 +202,13 @@ module LoadIco
return nil unless pixel_data_string.bytesize == expected_bytes && expected_bytes.positive?
Vips::Image.new_from_memory(
Vips::Image.new_from_memory_copy(
pixel_data_string,
dib_width,
image_pixel_height,
4,
:uchar
)
).copy(interpretation: :srgb)
end
# rubocop:enable Metrics
end