Module: FastImage::StreamUtil

Included in:
FiberStream, IOStream
Defined in:
lib/fastimage.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#read_byteObject



229
230
231
# File 'lib/fastimage.rb', line 229

def read_byte
  read(1)[0].ord
end

#read_intObject



233
234
235
# File 'lib/fastimage.rb', line 233

def read_int
  read(2).unpack('n')[0]
end

#read_string_intObject



237
238
239
240
241
242
243
# File 'lib/fastimage.rb', line 237

def read_string_int
  value = []
  while read(1) =~ /(\d)/
    value << $1
  end
  value.join.to_i
end