Packages
ExOptimizer is a tool to optimize pictures by running them through a chain of various image optimization tools.
Current section
Files
Jump to
Current section
Files
lib/ex_optimizer/image.ex
defmodule ExOptimizer.Image do
@moduledoc """
Represents a picture
"""
@type path :: binary
@type ext :: binary
@type mime :: binary
@type t :: %__MODULE__{
path: path,
ext: ext,
mime: mime
}
defstruct path: nil,
ext: nil,
mime: nil
end