object Row
Static methods for cutting out image rows of a given size from the original bitmaps/screens/colours.
- Alphabetic
- By Inheritance
- Row
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val bitmapRowSize: Int
Default length of a single image row bitmap data.
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val colorsRowSize: Int
Default length of a single image row colours data.
- def convertDataToCode(data: Array[Byte], numValues: Int = 16, indent: Int = 16): String
Converts data to source code string which is ready to be compiled by "dreamass".
Converts data to source code string which is ready to be compiled by "dreamass".
- data
an array of bytes to be converted
- numValues
maximum number of byte values included in a single source code row (defaults to 16)
- indent
initial indentation for each row of source code data (defaults to 16)
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def getBitmapRow(index: Int, bitmap: Array[Byte], rowSize: Int = bitmapRowSize): Array[Byte]
Returns the new bitmap row data composed from cutting out selected row of a given size from the original image.
Returns the new bitmap row data composed from cutting out selected row of a given size from the original image.
- index
8x8 character row index of an image (expected to be an integer between 0 and 24)
- bitmap
array of bytes used as a source of data for constructing the new bitmap row
- rowSize
data size of a single bitmap row in the original image
- def getBitmapRows(from: Int, to: Int, bitmap: Array[Byte], rowSize: Int = bitmapRowSize): Array[Byte]
Returns the new bitmap rows data composed from cutting out selected rows of a given size from the original image.
Returns the new bitmap rows data composed from cutting out selected rows of a given size from the original image.
- from
initial 8x8 character row index of an image (expected to be an integer between 0 and 24)
- to
closing 8x8 character row index of an image (expected to be an integer between 0 and 24)
- bitmap
array of bytes used as a source of data for constructing the new bitmap rows
- rowSize
data size of a single bitmap row in the original image
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getColorsRow(index: Int, colors: Array[Byte], rowSize: Int = colorsRowSize): Array[Byte]
Returns the new colors row data composed from cutting out selected row of a given size from the original image.
Returns the new colors row data composed from cutting out selected row of a given size from the original image.
- index
8x8 character row index of an image (expected to be an integer between 0 and 24)
- colors
array of bytes used as a source of data for constructing the new colors row
- rowSize
data size of a single colors row in the original image
- def getColorsRows(from: Int, to: Int, colors: Array[Byte], rowSize: Int = colorsRowSize): Array[Byte]
Returns the new colors rows data composed from cutting out selected rows of a given size from the original image.
Returns the new colors rows data composed from cutting out selected rows of a given size from the original image.
- from
initial 8x8 character row index of an image (expected to be an integer between 0 and 24)
- to
closing 8x8 character row index of an image (expected to be an integer between 0 and 24)
- colors
array of bytes used as a source of data for constructing the new colors rows
- rowSize
data size of a single colors row in the original image
- def getScreenRow(index: Int, screen: Array[Byte], rowSize: Int = screenRowSize): Array[Byte]
Returns the new screen row data composed from cutting out selected row of a given size from the original image.
Returns the new screen row data composed from cutting out selected row of a given size from the original image.
- index
8x8 character row index of an image (expected to be an integer between 0 and 24)
- screen
array of bytes used as a source of data for constructing the new screen row
- rowSize
data size of a single screen row in the original image
- def getScreenRows(from: Int, to: Int, screen: Array[Byte], rowSize: Int = screenRowSize): Array[Byte]
Returns the new screen rows data composed from cutting out selected rows of a given size from the original image.
Returns the new screen rows data composed from cutting out selected rows of a given size from the original image.
- from
initial 8x8 character row index of an image (expected to be an integer between 0 and 24)
- to
closing 8x8 character row index of an image (expected to be an integer between 0 and 24)
- screen
array of bytes used as a source of data for constructing the new screen rows
- rowSize
data size of a single screen row in the original image
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val screenRowSize: Int
Default length of a single image row screen data.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()