![]() |
| |||||||
| Photo Retouching "Improving" photos, post-production, correction, etc. |
| | Thread Tools |
|
#1
| |||
| |||
| Deleting Photoshop History Log in CS4? Good Morning Forum Members, I was wondering how to delete the history log of what was done in Photoshop CS4 from the metadata of an image? Have a Good Day, Shaun |
|
#2
| |||
| |||
| Re: Deleting Photoshop History Log in CS4? Quote:
2nd option, is to use a Hex Editor, open the file, go to the section with the History tab info, and then just delete it / replace it with blanks (screenshot attached). Regards, Murray |
|
#3
| |||
| |||
| Re: Deleting Photoshop History Log in CS4? A better option would be to use ExifTool to remove the data.. http://www.sno.phy.queensu.ca/~phil/exiftool/ Or use a Bridge script IE: Code: #target bridge
clearHistory = {};
clearHistory.execute = function(){
var sels = app.document.selections;
for (var i = 0; i < sels.length; i++){
var md = sels[i].synchronousMetadata;
md.namespace = "http://ns.adobe.com/photoshop/1.0/";
md.History = " ";
}
}
if (BridgeTalk.appName == "bridge"){
var menu = MenuElement.create( "command", "Clear history in Metadata", "at the end of Tools");
menu.onSelect = clearHistory.execute;
}
|
| Thread Tools | |
| |
| | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Photoshop CS4 & CS5 crash on quitting. | gholmes1936 | Photoshop Help | 8 | 12-25-2010 12:54 AM |
| Photoshop size versus RetouchPro size of pix. | Canna W | Website Feedback | 2 | 12-06-2010 02:25 AM |
| Photoshop Art History Palette knife | sergio2263 | Turning Portraits into Digital Sketches, Oils, Watercolors | 4 | 12-30-2009 04:01 PM |
| Photoshop CS4 Basics Book? | pumpkincat210 | Non-RetouchPRO Resources | 6 | 08-24-2009 09:50 PM |
| Deleting Photoshop preferences | Doug Nelson | Photo Retouching | 0 | 05-20-2002 12:20 AM |