Documentation ¶
Overview ¶
Package images provides default implementation of image related tasks.
Index ¶
- Constants
- type CleanThumbsTask
- type ExifProcessor
- func (e *ExifProcessor) ExtractExif(ctx context.Context, node *tree.Node) (*exif.Exif, error)
- func (e *ExifProcessor) GetName() string
- func (e *ExifProcessor) Init(job *jobs.Job, cl client.Client, action *jobs.Action) error
- func (e *ExifProcessor) Run(ctx context.Context, channels *actions.RunnableChannels, ...) (jobs.ActionMessage, error)
- type ThumbnailData
- type ThumbnailExtractor
- type ThumbnailsMeta
Constants ¶
View Source
const ( METADATA_EXIF = "ImageExif" METADATA_GEOLOCATION = "GeoLocation" METADATA_COMPAT_ORIENTATION = "image_exif_orientation" )
View Source
const ( METADATA_THUMBNAILS = "ImageThumbnails" METADATA_IMAGE_DIMENSIONS = "ImageDimensions" METADATA_COMPAT_IS_IMAGE = "is_image" METADATA_COMPAT_IMAGE_WIDTH = "image_width" METADATA_COMPAT_IMAGE_HEIGHT = "image_height" METADATA_COMPAT_IMAGE_READABLE_DIMENSIONS = "readable_dimension" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CleanThumbsTask ¶
func (*CleanThumbsTask) GetName ¶
func (c *CleanThumbsTask) GetName() string
GetName returns this action unique identifier.
func (*CleanThumbsTask) Run ¶
func (c *CleanThumbsTask) Run(ctx context.Context, channels *actions.RunnableChannels, input jobs.ActionMessage) (jobs.ActionMessage, error)
Run the actual action code
type ExifProcessor ¶
type ExifProcessor struct {
// contains filtered or unexported fields
}
func (*ExifProcessor) ExtractExif ¶
func (*ExifProcessor) GetName ¶
func (e *ExifProcessor) GetName() string
GetName returns this action unique identifier
func (*ExifProcessor) Run ¶
func (e *ExifProcessor) Run(ctx context.Context, channels *actions.RunnableChannels, input jobs.ActionMessage) (jobs.ActionMessage, error)
Run the actual action code
type ThumbnailData ¶
type ThumbnailExtractor ¶
func (*ThumbnailExtractor) GetName ¶
func (t *ThumbnailExtractor) GetName() string
GetName returns this action unique identifier.
func (*ThumbnailExtractor) Run ¶
func (t *ThumbnailExtractor) Run(ctx context.Context, channels *actions.RunnableChannels, input jobs.ActionMessage) (jobs.ActionMessage, error)
Run the actual action code.
type ThumbnailsMeta ¶
type ThumbnailsMeta struct { Processing bool Thumbnails []ThumbnailData `json:"thumbnails"` }
Click to show internal directories.
Click to hide internal directories.