You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a use-case where we would like to create a new image based off raw RGB data. Vips does have support for this via the new_from_memory function (or better yet new_from_memory_copy), e.g.:
vips::VImage out = vips::VImage::new_from_memory (data, length, width, height, 3, VIPS_FORMAT_UCHAR);
The text was updated successfully, but these errors were encountered:
We have a use-case where we would like to create a new image based off raw RGB data. Vips does have support for this via the
new_from_memory
function (or better yetnew_from_memory_copy
), e.g.:vips::VImage out = vips::VImage::new_from_memory (data, length, width, height, 3, VIPS_FORMAT_UCHAR);
The text was updated successfully, but these errors were encountered: