26ca084699
This is a follow-up improvement for the following feature requests that have already shipped with our stable release: - Live Photos: Add support for Samsung Motion Photos #439 - Live Photos: Add support for Google Camera Motion Photos #1739 Signed-off-by: Michael Mayer <michael@photoprism.app>
8 lines
116 B
Go
8 lines
116 B
Go
package fs
|
|
|
|
// Required file format decoders and encoders.
|
|
import (
|
|
_ "image/gif"
|
|
_ "image/jpeg"
|
|
_ "image/png"
|
|
)
|