Method: Vips.block_untrusted
- Defined in:
- lib/vips.rb
.block_untrusted(state) ⇒ Object
Block/unblock all untrusted operations from running.
Use vips -l at the command-line to see the class hierarchy and which operations are marked as untrusted.
833 834 835 |
# File 'lib/vips.rb', line 833 def self.block_untrusted(state) vips_block_untrusted_set(state ? 1 : 0) end |