Sha256: 8606a4d96795e6f123dfaa0c0ecc1ca8bbfb6f06e804ef735db3a97f22ae0191

Contents?: true

Size: 831 Bytes

Versions: 8

Compression:

Stored size: 831 Bytes

Contents

module Vips

    # Some hints about the image loader.
    #
    # *   `:partial` means that the image can be read directly from the
    #     file without needing to be unpacked to a temporary image first. 
    #
    # *   `:sequential` means that the loader supports lazy reading, but
    #     only top-to-bottom (sequential) access. Formats like PNG can read 
    #     sets of scanlines, for example, but only in order. 
    #
    #     If neither partial` or sequential` is set, the loader only supports 
    #     whole image read. Setting both partial` and sequential` is an error.
    #
    # *   `:bigendian` means that image pixels are most-significant byte
    #     first. Depending on the native byte order of the host machine, you may
    #     need to swap bytes. See vips_copy().
    class ForeignFlags
    end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
ruby-vips-1.0.6 lib/vips/foreignflags.rb
ruby-vips-1.0.5 lib/vips/foreignflags.rb
ruby-vips-1.0.4 lib/vips/foreignflags.rb
ruby-vips-1.0.3 lib/vips/foreignflags.rb
ruby-vips-1.0.2 lib/vips/foreignflags.rb
ruby-vips-1.0.1 lib/vips/foreignflags.rb
ruby-vips-1.0.0 lib/vips/foreignflags.rb
ruby-vips8-0.1.0 lib/vips8/foreignflags.rb