EXIF info

Corel Paint Shop Pro

Moderator: Kathy_9

Post Reply
brucet
Posts: 895
Joined: Thu Sep 22, 2011 10:37 am
operating_system: Windows 8.1
System_Drive: C
32bit or 64bit: 64 Bit
ram: 8GB
Location: Australia

EXIF info

Post by brucet »

Is there an easy and 'fool proof' way of stripping EXIF info from jpegs in PSPx6? Sometimes I get no details and yet other times details are left available.

regards
LeviFiction
Advisor
Posts: 6831
Joined: Thu Oct 02, 2008 1:07 pm
operating_system: Windows 10
System_Drive: C
32bit or 64bit: 64 Bit
motherboard: Alienware M17xR4
processor: Intel Core i7-3630QM CPU - 2_40GH
ram: 6 GB
Video Card: NVIDIA GeForce GTX 660M
sound_card: Sound Blaster Recon3Di
Hard_Drive_Capacity: 500GB
Corel programs: PSP: 8-2023
Location: USA

Re: EXIF info

Post by LeviFiction »

Yes.

I don't know if there is a built in command inside of PSP you can just click. But there is a script command called "DeleteEXIF" that you can run. It will delete everything except for the author name and copryright info.

If you want to delete it all, all. You will need a different tool. There are a few meta-data strippers out there.

Just copy and paste this into a text file. Name it DeleteEXIF.pspscript Should work version 9 up..maybe. I only tested it in X6.

Code: Select all

from JascApp import *

def ScriptProperties():
    return {
        'Author': u'',
        'Copyright': u'',
        'Description': u'',
        'Host': u'PaintShop Pro',
        'Host Version': u'9.00'
        }

def Do(Environment):
    # EnableOptimizedScriptUndo
    App.Do( Environment, 'EnableOptimizedScriptUndo', {
            'GeneralSettings': {
                'ExecutionMode': App.Constants.ExecutionMode.Default, 
                'AutoActionMode': App.Constants.AutoActionMode.Match, 
                'Version': ((9,0,0),1)
                }
            })

    # Delete EXIF
    App.Do( Environment, 'DeleteEXIF', {
            'GeneralSettings': {
                'ExecutionMode': App.Constants.ExecutionMode.Default, 
                'AutoActionMode': App.Constants.AutoActionMode.Match, 
                'Version': ((9,0,0),1)
                }
            })    
https://levifiction.wordpress.com/
brucet
Posts: 895
Joined: Thu Sep 22, 2011 10:37 am
operating_system: Windows 8.1
System_Drive: C
32bit or 64bit: 64 Bit
ram: 8GB
Location: Australia

Re: EXIF info

Post by brucet »

Thanks. But I'm getting a 'script' error?

regards
LeviFiction
Advisor
Posts: 6831
Joined: Thu Oct 02, 2008 1:07 pm
operating_system: Windows 10
System_Drive: C
32bit or 64bit: 64 Bit
motherboard: Alienware M17xR4
processor: Intel Core i7-3630QM CPU - 2_40GH
ram: 6 GB
Video Card: NVIDIA GeForce GTX 660M
sound_card: Sound Blaster Recon3Di
Hard_Drive_Capacity: 500GB
Corel programs: PSP: 8-2023
Location: USA

Re: EXIF info

Post by LeviFiction »

What is the error?
https://levifiction.wordpress.com/
photodrawken
Posts: 684
Joined: Wed Sep 26, 2012 8:40 am
operating_system: Windows 10
System_Drive: C
32bit or 64bit: 64 Bit
ram: 16Gb
Hard_Drive_Capacity: 324Gb
Location: USA

Re: EXIF info

Post by photodrawken »

LeviFiction wrote:If you want to delete it all, all. You will need a different tool. There are a few meta-data strippers out there.
I can recommend the ExifToolGUI, which (not surprisingly) is a graphical user interface to the ExifTool commandline application:
http://u88.n24.queensu.ca/~bogdan/
From that page you can download the ExifTool and the ExifToolGUI.

Not only does it have the "Delete All Metadata" option, but it's also an excellent tool for looking at all the metadata of an image....
Ken
Yes, I think it can be eeeeeasily done...
Just take everything out on Highway 61.
brucet
Posts: 895
Joined: Thu Sep 22, 2011 10:37 am
operating_system: Windows 8.1
System_Drive: C
32bit or 64bit: 64 Bit
ram: 8GB
Location: Australia

Re: EXIF info

Post by brucet »

LeviFiction I picked up 'script' error when I copied and pasted to a text file. I now know where the error is/was.

Thanks.
Post Reply