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
+1 -1
View File
@@ -39,7 +39,7 @@ module LoadBmp
bands = header_data[:bpp] / 8
end
image = Vips::Image.new_from_memory(final_pixel_data, header_data[:width], header_data[:height], bands, :uchar)
image = Vips::Image.new_from_memory_copy(final_pixel_data, header_data[:width], header_data[:height], bands, :uchar)
image = image.flip(:vertical) if header_data[:orientation] == -1