mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 00:22:14 +01:00
* add new metadata functions to pdf engine interface * add exiftool module with relevant test cases * use exiftool to overwrite metadata in libreoffice * use exiftool to overwrite metadata in chromium * fix linter issues * fix more linter issues * more test cases for better coverage * remove utils * minor changes * remove metadata from pdfoptions * correct indentation * read/write metadata one file at a time.
9 lines
427 B
Go
9 lines
427 B
Go
// Package exiftool provides an implementation of the gotenberg.PdfEngine
|
|
// interface using the ExifTool command-line tool. This package allows for reading and
|
|
// writing of metadata, but does not support the merging of PDF files
|
|
// nor conversion to specific PDF formats. The path to the exiftool binary must be
|
|
// specified using the EXIFTOOL_BIN_PATH environment variable.
|
|
//
|
|
// See: https://exiftool.org.
|
|
package exiftool
|