forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Do codec
angerangel edited this page Mar 15, 2013
·
1 revision
DO-CODEC handle action data
Evaluate a CODEC function to encode or decode media types.
DO-CODEC is a native value.
- handle -- Internal link to codec (handle!)
- action -- Decode, encode, identify (word!)
- data (binary! image!)
#SOURCE
do-codec: make native! [ [
{Evaluate a CODEC function to encode or decode media types.}
handle [handle!] "Internal link to codec"
action [word!] "Decode, encode, identify"
data [binary! image!]
] ]