Releases: elixir-image/image
Image version 0.55.2
Image 0.55.2
This is the changelog for Image version 0.55.2 released on December 8th, 2024. For older changelogs please consult the release tag on GitHub
Bug Fixes
- Update the version number only so that there is no retired version as the latest on hex.
Image 0.55.1
This is the changelog for Image version 0.55.1 released on December 8th, 2024. For older changelogs please consult the release tag on GitHub
Bug Fixes
- Deprecated and retired.
Image version 0.55.0
Bug Fixes
-
Fixes
Image.mutate/4
to correctly interpret the return results of mutation functions inImage.Draw
. Thanks to @ramyma for the issue and the PR. Closes #173, closes #174. -
Fix spec for
Image.crop!/4
. Thanks to @BobbyMcWho for the PR. Closes #171.
Enhancements
Image version 0.54.4
Bug Fixes
-
Raises minimum Elixir version to 1.14 since that is the minimum requriement now for Nx.
-
Add Elixir 1.14 to the CI matrix. Thanks very much to @@leandrocp for the PR. Closes #164.
-
Fix some EXIF tag decoding. Thanks to @hansihe for the PR. Closes #169.
Image version 0.54.3
Bug Fixes
-
Fix parsing invalid date time in Exif data. When invalid, the raw underlying string is returned.
-
Trim strings in Exif data. As a result, empty strings will be returned now as
nil
rather than""
. -
Replace a
<<0, ....>>
sequence in an Exif string value withnil
. -
Decode additional tags:
-
Exif tag
0xA005
, Interop Offset. The value is in internal file pointer so has no meaningful interpretation inimage
. -
TIFF tag
0xC4A5
, Print Image Matching. According to this source the field has no standardised values so the raw value is returned.
-
Image version 0.54.2
Bug Fixes
-
Return the updated
t:Plug.Conn.t/0
when callingImage.write/2
with the destination being a plug. Thanks to @LostKobrakai for the issue. Closes #159. -
Fixes
Image.Application
to useImage.bumblebee_configured?/0
. Thanks to @mat-hek for the PR. Closes #160. -
Fix the spec for
Image.Video.with_video/2
. Thanks to @nikitosing for the report. Closes #162.
Image version 0.54.1
Bug Fixes
- Adjust
Image.Math.-/1
(unary minus) syntax to be compatible on more elixir versions. Should be ok back to Elixir 1.12 depending on vix version support requirement on OTP.
Image version 0.52.3
Image version 0.52.2
Bug Fixes
- Fix the return from
Image.contrast/2
. Thanks to @RyoWakabayashi for the report and the PR. Closes #144.
Image version 0.52.1
Bug Fixes
- Fix including
Image.Nx
only ifNx
is configured. Closes #143.
Image version 0.52.0
Enhancements
-
Adds
:background_color
option toImage.flatten/2
. -
Add
Image.Nx
to host someNx
convenience functions.
Bug Fixes
-
Fix
Image.delta_e/2
to return a float (not an integer) -
Fix
Image.k_means/2
to work with images in color spaces other than sRGB.