Update Metadata from JPEG File in Java

Metadata Editor for Java applications – Change metadata fields from all popular documents, images and multimedia file formats using metadata editor API for Java.


Download Free Trial

About GroupDocs.Metadata for Java API

GroupDocs.Metadata for Java is an advanced metadata fields manipulation solution to easily read, add, modify, delete, search, compare, replace and export metadata information from images and document formats without using any external software. Edit metadata details from Word documents, Excel spreadsheets, PowerPoint presentations, Outlook emails, OneNote, Visio, Project, PDF, AutoCAD, ZIp, Audio and Video file formats along with the support for working with many other metadata processing features.

Steps for JPEG Metadata Extraction in Java

GroupDocs.Metadata makes it easy for Java developers to get metadata information from JPEG files from within their applications by implementing a few easy steps.

  • Load the JPEG file to be updated.
  • Specify a predicate that will be used to filter desired metadata properties.
  • Specify a value which you want to be assigned to the selected properties.
  • Pass the predicate and the new value to the UpdateProperties method.
  • Check the actual number of updated properties.
  • Save the changes.

System Requirements

GroupDocs.Metadata for Java APIs are supported on all major platforms and operating systems. Before executing the code below, please make sure that you have the following prerequisites installed on your system.

  • Operating Systems: Microsoft Windows, Linux, MacOS
  • Development Environment: NetBeans, Intellij IDEA, Eclipse etc
  • Java Runtime Environment: J2SE 6.0 and above
  • Get the latest version of GroupDocs.Metadata for Java from Maven

public class UpdatingMetadata {
    public static void run() {
        Date threeDaysAgo = new Date(System.currentTimeMillis() - TimeUnit.DAYS.toMillis(3));
        try (Metadata metadata = new Metadata("input.jpeg")) {
                // Update the file creation date/time if the existing value is older than 3 days
                int affected = metadata.updateProperties(new ContainsTagSpecification(Tags.getTime().getCreated()).and(
                        new OfTypeSpecification(MetadataPropertyType.DateTime)).and(
                        new UpdatingMetadata().new DateBeforeSpecification(threeDaysAgo)), new PropertyValue(new Date()));

                System.out.println(String.format("Affected properties: %s", affected));

                metadata.save("output.jpeg");
        }
    }

    // Define your own specifications to filter metadata properties
    public class DateBeforeSpecification extends Specification {
        public DateBeforeSpecification(Date date) {
            setValue(date);
        }

        public final Date getValue() {
            return auto_Value;
        }

        private void setValue(Date value) {
            auto_Value = value;
        }

        private Date auto_Value;

        public boolean isSatisfiedBy(MetadataProperty candidate) {
            Date date = candidate.getValue().toClass(Date.class);
            if (date != null) {
                return date.before(getValue());
            }
            return false;
        }
    }
}

Live Demos of Editing Metadata

Update metadata information of JPEG file right now by visiting GroupDocs.Metadata Live Demos website.
The live demo has the following benefits

No need to download API

No need to write any code

Just upload the source file

Get download link to save the file

About JPEG File Format

A JPEG is a type of image format that is saved using the method of lossy compression. The output image, as result of compression, is a trade-off between storage size and image quality. Users can adjust the compression level to achieve the desired quality level while at the same time reduce the storage size. Image quality is negligibly affected if 10:1 compression is applied to the image. The higher the compression value, the higher the degradation in image quality. JPEG image file format was standardized by the Joint Photographic Experts Group and, hence, the name JPEG. The format has been the choice of storing and transmitting photographic images on the web. Almost all Operating systems now have viewers that support visualization of JPEG images, which are often stored with JPG extension as well. Even the web browsers support visualization of JPEG images.

Read More About JPEG File Format

Changing Metadata Of Other File Formats

Multi format documents and images metadata editing API for Java. Get metadata details of some of the popular file formats as stated below.

Update PDF Metadata

(Adobe Portable Document Format)

Update DOC Metadata

(Microsoft Word Document)

Update DOCM Metadata

(Microsoft Word Macro-Enabled Document)

Update DOCX Metadata

(Microsoft Word Open XML Document)

Update DOT Metadata

(Microsoft Word Document Template)

Update DOTX Metadata

(Word Open XML Document Template)

Update XLS Metadata

(Microsoft Excel Binary File Format)

Update XLSX Metadata

(Microsoft Excel Open XML Spreadsheet)

Update XLSM Metadata

(Microsoft Excel Macro-Enabled Spreadsheet)

Update XLTM Metadata

(OOXML Macro Enabled Workbook Template)

Update PPT Metadata

(PowerPoint Presentation)

Update PPS Metadata

(Microsoft PowerPoint Slide Show)

Update PPTX Metadata

(PowerPoint Open XML Presentation)

Update PPSX Metadata

(PowerPoint Open XML Slide Show)

Update POTX Metadata

(Microsoft PowerPoint Open XML Template)

Update POTM Metadata

(Microsoft PowerPoint Template)

Update PPTM Metadata

(Microsoft PowerPoint Presentation)

Update PPSM Metadata

(Microsoft PowerPoint Slide Show)

Update ODS Metadata

(Open Document Spreadsheet)

Update ODT Metadata

(Open Document Text)

Update TIFF Metadata

(Tagged Image File Format)

Update PNG Metadata

(Portable Network Graphic)

Update GIF Metadata

(Graphical Interchange Format File)

Update BMP Metadata

(Bitmap File Format)

Update JP2 Metadata

(JPEG 2000 Core Image File)

Update WEBP Metadata

(Raster Web Image File Format)

Update PSD Metadata

(Adobe Photoshop Document)

Update WMF Metadata

(Windows Metafile)

Update EMF Metadata

(Enhanced Metafile Format)

Update MPP Metadata

(Microsoft Project Document)

Update MSG Metadata

(Microsoft Outlook E-mail Message)

Update EML Metadata

(E-mail Message)

Update DWG Metadata

(Autodesk Design Data Formats)

Update DXF Metadata

(AutoCAD Drawing Interchange)

Update ONE Metadata

(Microsoft OneNote)

Update MP3 Metadata

(MPEG Audio Layer III)

Update WAV Metadata

(Waveform Audio File Format)

Update DICOM Metadata

(Digital Imaging & Comm in Medicine)

Update AVI Metadata

(Audio Video Interleave File)

Update VSD Metadata

(Microsoft Visio 2003-2010 Drawing)

Update VSDX Metadata

(Microsoft Visio Drawing)

Update VSS Metadata

(Microsoft Visio 2003-2010 Stencil)

Update VDX Metadata

(Microsoft Visio 2003-2010 XML Drawing)

Update VSX Metadata

(Microsoft Visio 2003-2010 XML Stencil)

Update ZIP Metadata

(Archive File Format)

Update EPUB Metadata

(Digital E-Book File Format)

Update VCF Metadata

(Electronic Business Card)

Back to top
 English