getImageBytes method

List<int> getImageBytes()

Returns the bytes of the jpeg image in the file.

Implementation

List<int> getImageBytes() {
  return input.getBytes(0, videoStartOffset);
}