@database Arexx_Loaders.guide

@node Main "ImageFX Loader Module Arguments"

Select A Loader Module:

   @{" ABEKAS               " link ABEKAS }
   @{" ANIM                 " link ANIM }
   @{" FLI                  " link FLI }
   @{" FLYERCLIP            " link FLYERCLIP } (2.1a)
   @{" GRASPDL              " link GRASPDL }
   @{" JPEG                 " link JPEG }
   @{" PNG                  " link PNG } (2.1a)
   @{" SOFTIMAGE            " link SOFTIMAGE }
   @{" TARGA                " link TARGA }

   Loaders not listed have no Arexx arguments.

@endnode

@node ABEKAS "ABEKAS Module Arguments"

ABEKAS

   @{b}FORMAT@{ub}
      Width/N,Height/N

   @{b}INPUTS@{ub}
      @{u}Width,Height@{uu}
         Specify the dimensions of the image to load, in pixels.

   @{b}EXAMPLE@{ub}
      LoadBuffer DH0:MyAbekasFile 1280 1024

@endnode

@node ANIM "ANIM Module Arguments"

ANIM

   @{b}FORMAT@{ub}
      Frame/N

   @{b}INPUTS@{ub}
      @{u}Frame@{uu}
         Frame number to load, starting from 1.

   @{b}EXAMPLE@{ub}
      LoadBuffer DH0:MyAnim.anim 14

@endnode

@node FLI "FLI Module Arguments"

FLI

   @{b}FORMAT@{ub}
      Frame/N

   @{b}INPUTS@{ub}
      @{u}Frame@{uu}
         Frame number to load, starting from 1.

   @{b}EXAMPLE@{ub}
      LoadBuffer DH0:MyFlic.fli 12

@endnode

@node FLYERCLIP "FLYERCLIP Module Arguments"

FLYERCLIP (2.1a)

   @{b}FORMAT@{ub}
      Frame/N

   @{b}INPUTS@{ub}
      @{u}Frame@{uu}
         Frame number to load, starting from 1.  Each frame consists of two 1/60th
         second fields.  An error code will be returned if attempting to read past
         the end of the clip.

   @{b}EXAMPLE@{ub}
      LoadBuffer DH0:MyClip 12

@endnode

@node GRASPDL "GRASPDL Module Arguments"

GRASPDL

   @{b}FORMAT@{ub}
      Frame/N

   @{b}INPUTS@{ub}
      @{u}Frame@{uu}
         Frame number to load, starting from 1.

   @{b}EXAMPLE@{ub}
      LoadBuffer DH0:MyGrasp.gl 5

@endnode

@node JPEG "JPEG Module Arguments"

JPEG

   @{b}FORMAT@{ub}
      Smooth/S,NoSmooth/S

   @{b}INPUTS@{ub}
      @{u}Smooth,NoSmooth@{uu}
         Select whether to enable the smoothing option when decoding
         the JPEG.

   @{b}EXAMPLE@{ub}
      LoadBuffer DH0:MyPicture.jpg NoSmooth

@endnode

@node PNG "PNG Module Arguments"

PNG (2.1a)

   @{b}FORMAT@{ub}
      NoGamma/S,NoAlpha/S,Alpha/S

   @{b}INPUTS@{ub}
      @{u}NoGamma/S@{uu}
         Disables applying the gamma curve of the input file to the image.

      @{u}NoAlpha/S,Alpha/S@{uu}
         Loads or does not load the alpha channel of an image without
         prompting the user.

   @{b}EXAMPLE@{ub}
      LoadBuffer DH0:MyPicture.png NoAlpha NoGamma

@endnode

@node SOFTIMAGE "SOFTIMAGE Module Arguments"

SOFTIMAGE (2.0)

   @{b}FORMAT@{ub}
      Alpha/S,NoAlpha/S,Force/S

   @{b}INPUTS@{ub}
      @{u}Alpha, NoAlpha@{uu}
         If an alpha channel is detected in the file being loaded,
         specifying one of these options will bypass the "Load alpha
         channel" requester.

      @{u}Force@{uu}
         If an alpha channel is to loaded, specifying this option will
         force the loader to overwrite any existing alpha channel
         without prompting the user.

   @{b}EXAMPLE@{ub}
      LoadBuffer DH0:MyPict.sof NoAlpha

@endnode

@node TARGA "TARGA Module Arguments"

TARGA (2.0)

   @{b}FORMAT@{ub}
      Alpha/S,NoAlpha/S,Force/S

   @{b}INPUTS@{ub}
      @{u}Alpha, NoAlpha@{uu}
         If an alpha channel is detected in the file being loaded,
         specifying one of these options will bypass the “Load alpha
         channel” requester.

      @{u}Force@{uu}
         If an alpha channel is to loaded, specifying this option will
         force the loader to overwrite any existing alpha channel
         without prompting the user.

   @{b}EXAMPLE@{ub}
      LoadBuffer DH0:MyTarga.tga Alpha Force


@endnode
