View Source Image.Options.Join (image v0.45.0)

Options and option validation for Image.join/2.

Summary

Types

Options applicable to Image.join/2.

Image.join/2 options list.

Types

@type join_option() ::
  {:vertical_spacing, non_neg_integer()}
  | {:horizontal_spacing, non_neg_integer()}
  | {:vertical_align, :top | :center | :bottom}
  | {:horizontal_align, :left | :center | :right}
  | {:background_color, Image.Color.t() | nil}
  | {:shim, non_neg_integer()}
  | {:across, pos_integer()}

Options applicable to Image.join/2.

@type join_options() :: [join_option()]

Image.join/2 options list.

Functions

Link to this function

validate_options(options)

View Source

Validate the options for Image.join/2.