Packages

A simple and fast vips image processing library for Gleam!

Current section

Files

Jump to
ansel src ansel.erl
Raw

src/ansel.erl

-module(ansel).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export_type([image/0]).
-if(?OTP_RELEASE >= 27).
-define(MODULEDOC(Str), -moduledoc(Str)).
-define(DOC(Str), -doc(Str)).
-else.
-define(MODULEDOC(Str), -compile([])).
-define(DOC(Str), -compile([])).
-endif.
?MODULEDOC(" This module provides the image type for the other modules in this package.\n").
-type image() :: any().