• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

How to Preserve Created or Modified Date on non-photograph PNG images in batch processing?

Explorer ,
May 18, 2023 May 18, 2023

Copy link to clipboard

Copied

I have hundreds of large (1MB+) png files, mostly screenshots for documentation. Every month or 2, I batch convert all my PNG screenshots with a Photoshop action via Bridge. All that works great and I get JPG images with much lower filesize, as intended. But, really the only problem is that the JPG files don't preserve the date - not in Windows Explorer, nor in Bridge. They take today's date instead of the original creation date.

 

(Screenshots of my batch process:)

 

ehd_ss_20230518_Bridge_Batch_PNGConvert_01.jpgehd_ss_20230518_Bridge_Batch_PNGConvert_02.jpg

 

I  have found lots of discussions on this forum about preserving EXIF data for camera RAW and JPEG file type, and this doesn't seem to apply to my PNG filetype. I have seen statements that this is "normal" behavior. In that case, I guess I'm doing something outside the norm (but not too far because there are others asking about how to do this as well)

Here are some other details:

 

  • I'm on Windows 10 64-bit
  • I have CC sub and regularly use Photoshop and just started learning Bridge

 

I have not found any way to do this with my setup and it seems like such a simple thing. This video about manually changing dates with a convoluted script in Mac was instructive. And @Conrad C and @JJMack  offered good insight in this forum post, but the OP still had questions at the end about Windows and I suspect the ungiven answers may have helped solve the issue I'm having (possibly).

 

I reached a dead end in my own research, so I am turning to the community experts for help. Is there anything I can do - with the software I already have (or trusted freeware) - to preserve dates on my converted non-photo images?


All help is appreciated.

TOPICS
Actions and scripting , Windows

Views

815

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
LEGEND ,
May 18, 2023 May 18, 2023

Copy link to clipboard

Copied

Without detailed knowledge it seems to me that if you are converting PNG to JPG, the solution is to do nothing with a PNG when the JPG already exists.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 18, 2023 May 18, 2023

Copy link to clipboard

Copied

Ah, do you mean that things aren't as you want them, even on the first (or only) conversion?  Actually, I'd expect that, a screen shot won't have photographer metadata. 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 18, 2023 May 18, 2023

Copy link to clipboard

Copied

The command line interface ExifTool program can easily do this for a batch of images in say two different folders:

 

https://exiftool.org/forum/index.php?topic=10322.0

 

Here is an example on the Mac:

 

exiftool -TagsFromFile /Users/username/Desktop/My_Folder/PNG/%f.png -FileCreateDate -FileModifyDate /Users/username/Desktop/My_Folder/JPG

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 18, 2023 May 18, 2023

Copy link to clipboard

Copied

quote

I  have found lots of discussions on this forum about preserving EXIF data for camera RAW and JPEG file type, and this doesn't seem to apply to my PNG filetype. I have seen statements that this is "normal" behavior. In that case, I guess I'm doing something outside the norm (but not too far because there are others asking about how to do this as well)

By @CodeSlayer2010

 

Technically (somebody correct this if wrong), it might not be EXIF metadata you need to preserve, but one of the common file system date types; I am guessing you only need to preserve the file creation date. This would not be EXIF-specific metadata because EXIF is typically generated by cameras. This might be why some say it’s “normal”…EXIF is not expected to be in a PNG if it was not created by a camera. A screen shot would be expected to include the same file Date Created and Date Modified found in all computer files. If it had EXIF, it would also include Date Taken (Capture Date). That’s a camera image creation date and time that’s recorded separately so that it can be preserved even as a photo is edited and exported or converted (which creates a new Date Created and Date Modified, as you are seeing). Date Taken can be maintained throughout that process; but again, a PNG normally doesn’t have Date Taken.

 

Stephen_A_Marsh’s ExifTool solution might be the way to go, because ExifTool is cross platform, free, very well known and trusted (used by many applications), and appears to do the job. If I read his example correctly, the command line is not actually doing anything with EXIF (appropriate since there is probably not any EXIF-specific info in the PNGs), but just transferring a PNG original’s file system Date Created and Date Modified to the converted JPG copies. This sort of specialized need is an example of a reason people often turn to ExifTool. If using the command line is challenging, I understand that there are some graphical front ends to ExifTool out there.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
May 18, 2023 May 18, 2023

Copy link to clipboard

Copied

LATEST

Thanks @Conrad C ! I will give @Stephen_A_Marsh solution a try once I get a chance.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines