as.raw.AmigaBasic | R Documentation |
Convert AmigaFFH objects into raw data, as they would be stored in the Commodore Amiga's memory or files.
## S3 method for class 'AmigaBasic'
as.raw(x, ...)
## S3 method for class 'AmigaBasicShape'
as.raw(x, ...)
## S3 method for class 'AmigaBasicBMAP'
as.raw(x)
## S3 method for class 'AmigaBitmapFont'
as.raw(x, ...)
## S3 method for class 'AmigaBitmapFontSet'
as.raw(x, ...)
## S3 method for class 'AmigaTimeVal'
as.raw(x, ...)
## S4 method for signature 'hardwareSprite'
as.raw(x)
## S4 method for signature 'IFFChunk'
as.raw(x)
## S3 method for class 'IFF.ANY'
as.raw(x, ...)
## S3 method for class 'SysConfig'
as.raw(x, ...)
## S3 method for class 'AmigaIcon'
as.raw(x, ...)
x |
An AmigaFFH object that needs to be converted into raw data. See usage section for all supported objects. |
... |
Arguments passed on to |
Objects originating from this package can in some cases be converted into raw data, as they would be stored on an original Amiga. See the usage section for the currently supported objects.
Not all information from x
may be included in the raw
data that is returned, so handle with care.
As this package grows additional objects can be converted with this method.
Returns a vector
of raw
data based on x
.
Pepijn de Vries
Other raw.operations:
as.AmigaBasic()
,
colourToAmigaRaw()
,
packBitmap()
,
rawToAmigaBasicBMAP()
,
rawToAmigaBasicShape()
,
rawToAmigaBasic()
,
rawToAmigaBitmapFontSet()
,
rawToAmigaBitmapFont()
,
rawToAmigaIcon()
,
rawToHWSprite()
,
rawToIFFChunk()
,
rawToSysConfig()
,
simpleAmigaIcon()
## Not run:
## read an IFF file as an IFFChunk object:
example.iff <- read.iff(system.file("ilbm8lores.iff", package = "AmigaFFH"))
## This will recreate the exact raw data as it was read from the file:
example.raw <- as.raw(example.iff)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.