We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unknown enum LibVips::VipsArgumentFlags value: 274 (Exception)
This happens for at least Image.magickload_buffer method, and IIRC some others as well. This happens due to this line:
Image.magickload_buffer
crystal-vips/src/vips/introspect.cr
Line 90 in 1c40bc0
It's due to the missing enum member:
VIPS_ARGUMENT_NON_HASHABLE = 256
https://github.com/libvips/libvips/blob/7258df0c4b5e9056ea24055121a2e620dfb1b3a1/libvips/include/vips/object.h#L76
The text was updated successfully, but these errors were encountered:
@[Flags]
Successfully merging a pull request may close this issue.
This happens for at least
Image.magickload_buffer
method, and IIRC some others as well.This happens due to this line:
crystal-vips/src/vips/introspect.cr
Line 90 in 1c40bc0
It's due to the missing enum member:
https://github.com/libvips/libvips/blob/7258df0c4b5e9056ea24055121a2e620dfb1b3a1/libvips/include/vips/object.h#L76
The text was updated successfully, but these errors were encountered: