Add Copyright to Photo EXIF Data
Two EXIF fields carry your claim on a photo: Artist and Copyright. Your camera can fill them in at the moment of capture, one command can stamp them onto an archive of ten thousand files, and both take about a minute to set up. Here is how to do it — and, just as important, what it does and does not protect you from.
The short version
- Set it in the camera. Canon, Nikon, Sony, and recent Fujifilm bodies all have a copyright menu that writes your name into every frame from then on. Do this once and the rest is free.
- Stamp the files you already have. One ExifTool command walks a folder and fills the fields on everything it finds.
- Check it survived. Drop the exported JPEG into the metadata viewer — export dialogs strip metadata far more often than people expect.
# Write your name and notice into a photo's EXIF
exiftool -overwrite_original \
-EXIF:Artist="Jane Doe" \
-EXIF:Copyright="© 2026 Jane Doe. All rights reserved." \
photo.jpgAnd the honest caveat, up front: an embedded notice is a label, not a lock. It travels with the file and removes "we had no way of knowing who made it" as an excuse. It does not stop anyone from copying the photo, and every mainstream social platform deletes it on upload.
The Two EXIF Fields That Carry Copyright
EXIF is mostly a record of what the camera did — shutter speed, ISO, lens, timestamp. But the standard reserves two string fields for the human being behind the camera, and those are the ones you want:
| EXIF field | Tag ID | What goes in it |
|---|---|---|
Artist | 0x013B | The person who took the photo. Your name, spelled the way you want to be credited. Some software labels this field "Author" or "Creator" in its interface. |
Copyright | 0x8298 | The notice string itself — © 2026 Jane Doe. All rights reserved. The Exif specification allows this one field to hold both a photographer notice and an editor notice, separated by a NULL byte; in practice almost everyone writes a single string, and that is fine. |
That is the whole of what EXIF offers. There is no field for your email address, no field for licensing terms, no field for a link to your website. If you want those — and if you are selling work, you do — they live in the IPTC and XMP blocks, which sit in the same file and carry Creator, Copyright Notice, Rights Usage Terms, and a Web Statement URL.
Write EXIF, then mirror it
The two blocks are read by different software, and neither one updates the other. The reliable pattern is to write the same name and notice into EXIF and XMP and the legacy IPTC block, so that whichever one a given program looks at, it finds an answer. The command for that is further down this page.
Set It in the Camera and Every Frame Is Stamped
This is the step most photographers skip, and it is the one that does the most work. Every major interchangeable-lens system has a copyright menu that writes your name and notice into the standard Artist and Copyright EXIF fields of every photo you take from that point on — RAW and JPEG alike, with no software, no import step, and nothing to remember.
| System | Where the setting lives | What it writes |
|---|---|---|
| Canon EOS | Setup menu → Copyright information → Enter author name / Enter copyright details | Artist and Copyright. Separate from the "Owner's name" setting, which Canon tucks away in its MakerNote. |
| Nikon Z / DSLR | Setup menu → Copyright information → Artist / Copyright | Artist and Copyright, in the standard fields — so they survive exports that would drop a MakerNote. |
| Sony Alpha | Setup menu → Copyright Info → Set Photographer Name / Set Copyright Name | Artist and Copyright. There is a separate toggle for writing the body serial number. |
| Fujifilm X | Setup menu → Copyright Info, on recent bodies | Photographer and copyright strings, into the same standard fields. |
| Phones | No such setting | Neither iOS nor Android writes an author or copyright field. If you shoot on a phone, the fields have to be added afterwards. |
Two things worth knowing about this setting. It applies going forward only — it will not touch photos already on the card. And it persists across owners: a secondhand body will happily keep stamping the previous photographer's name onto your work until you clear it. If you have just bought a used camera, take a frame and check the Artist field before you shoot anything that matters.
Batch-Write Copyright Onto an Existing Archive
For the photos you already have — the ones shot before you found the camera menu, or shot on a phone — you need a tool that writes metadata in bulk. There are two workflows worth learning, and they suit different people.
ExifTool: free, exact, and the right answer for an archive
ExifTool is a free, open-source command-line program by Phil Harvey, and it is the reference implementation for reading and writing photo metadata. Nothing else gives you this much control. Start by looking at what a file already has:
# What does this file claim right now?
exiftool -Artist -Copyright photo.jpgThen write the fields. The -overwrite_original flag tells ExifTool to edit the file in place rather than leaving a _original backup beside it — leave it off the first time if you want a safety net:
# One file
exiftool -overwrite_original \
-EXIF:Artist="Jane Doe" \
-EXIF:Copyright="© 2026 Jane Doe. All rights reserved." \
photo.jpg
# A whole archive, recursively (-r walks every subfolder)
exiftool -overwrite_original -r \
-EXIF:Artist="Jane Doe" \
-EXIF:Copyright="© 2026 Jane Doe. All rights reserved." \
~/Pictures/archive/
# Only fill files that don't already have a notice — leaves client
# work and other people's photos alone
exiftool -overwrite_original -r -if 'not $Copyright' \
-EXIF:Artist="Jane Doe" \
-EXIF:Copyright="© 2026 Jane Doe" \
~/Pictures/archive/A twenty-year archive should not all say 2026. ExifTool can pull the year out of each file's own capture date and build the notice from it, so every photo gets the year it was actually taken:
# Year taken from each file's DateTimeOriginal
exiftool -overwrite_original -r \
"-EXIF:Copyright<© ${DateTimeOriginal#;DateFmt('%Y')} Jane Doe" \
~/Pictures/archive/And the version that fills EXIF, XMP, and the legacy IPTC block in one pass, so that every program that looks for a copyright finds one. The CodedCharacterSet line is not pedantry: the legacy IPTC block has no inherent encoding, and without that declaration an accented name comes back as mojibake.
exiftool -overwrite_original -r -charset iptc=UTF8 \
-EXIF:Artist="Jane Doe" \
-EXIF:Copyright="© 2026 Jane Doe" \
-XMP-dc:Creator="Jane Doe" \
-XMP-dc:Rights="© 2026 Jane Doe" \
-IPTC:CodedCharacterSet=UTF8 \
-IPTC:By-line="Jane Doe" \
-IPTC:CopyrightNotice="© 2026 Jane Doe" \
~/Pictures/archive/Lightroom: a preset that stamps every import
If you already keep a catalogue, the better answer is to make it automatic. Lightroom Classic lets you save a metadata preset — your name, your notice, your usage terms, your URL — and apply it in the Import dialog, so every photo is stamped as it comes off the card and you never think about it again. Adobe Bridge does the same job with metadata templates, applied to a selection of files where they sit, without importing anything into a catalogue.
Free alternatives do exist and do the job properly: digiKam is a full cataloguing application with real metadata editing, and XnView MP will batch-edit a folder through a GUI if you would rather not learn a command line.
The trap: your export dialog
Writing the fields into your RAW files or catalogue does not mean they reach the JPEG you send out. Every export dialog has a metadata dropdown, and several of its options strip copyright along with everything else. Choose the setting that keeps copyright and contact information — and then verify the exported file, because this is the single most common way a carefully maintained notice ends up nowhere.
Tools for the job
Software that stamps copyright at scale
ExifTool is free and does everything on this page — you never need to spend a penny. These are the paid tools photographers reach for when the metadata has to be applied to every file automatically, and when the originals have to survive.
Adobe Photography Plan
Lightroom + Photoshop subscription
Lightroom Classic's metadata presets apply your name, notice, and usage terms to every photo at import — the setting that makes copyright stamping automatic.
Adobe Photoshop Elements
One-time purchase editor
A no-subscription route to editing copyright and creator fields through the File Info panel, if a monthly plan is not for you.
The DAM Book
Digital asset management guide
Peter Krogh's book on organising a photo archive — the standard reference for the metadata, naming, and backup discipline behind a defensible library.
Portable SSD
Archive storage
Your untouched originals — RAW files, full EXIF, capture timestamps — are the strongest evidence you have of authorship. They only help if they still exist.
As an Amazon Associate this site earns from qualifying purchases. Links are sponsored.
Check Your Copyright Is Actually Intact
Never assume. Metadata is dropped silently — no warning, no error, just a file that no longer says who made it. Take the JPEG you are about to publish, drop it into the metadata viewer, and open the All tab. If Artist and Copyright are there with the right values, the file is carrying your claim. If they are not, something between the camera and the export ate them. The photo is read in your browser and never leaves your computer.
At a terminal, the same check across a folder:
# List the rights fields across every block, for a whole folder
exiftool -r -Artist -Copyright -Creator -Rights -CopyrightNotice ~/Pictures/export/
# Find the files that are missing a notice
exiftool -r -if 'not $Copyright' -filename ~/Pictures/export/The three places a notice usually disappears, in order of how often they catch people out: the export dialog's metadata dropdown, a resize or "save for web" step that re-encodes the file, and an upload to any platform at all.
Check a Photo's Copyright FieldsWhat Happens When You Upload It Somewhere
It gets deleted. Not maliciously — platforms re-encode every upload to serve it efficiently, and the metadata blocks are discarded wholesale in the process. Your copyright notice goes into the same bin as the GPS coordinates. The photo a stranger saves off Instagram or Facebook carries no author, no notice, no camera, and no date.
The uncomfortable half of this is that the platform itself received the original with everything in it — the stripping happens on the copy served to the public, not on the file sitting on their servers. Our page on which social media sites strip EXIF data has the side-by-side, and what EXIF data Facebook stores covers what a platform keeps for itself after the public copy has been scrubbed.
So where does an embedded notice actually earn its keep? On every file that is passed around in its original form — which is most of the files that matter commercially. A JPEG emailed to a client, delivered to a picture desk, handed to a printer, or submitted to a stock library arrives with your name in it. Google Images can surface creator and credit information from these fields alongside an image, and stock and editorial desks read them as a matter of routine. A file that arrives with the rights fields filled in is treated differently from one that arrives blank.
What to do about the platform copy
Nothing you put in the file will survive it, so stop trying. For photos that are going onto social media, the things that actually travel are a visible credit — a watermark, a signature, the caption — and your own record: the original RAW, with its untouched EXIF and capture timestamp, kept somewhere safe. That original is the file that answers "prove you took it".
What EXIF Copyright Protects You From — and What It Doesn't
In most countries you own the copyright in a photo from the moment you take it, whether or not anything is written into the file. Embedding a notice does not create that right and it does not register it. What it does is make the claim travel with the image.
- It removes the honest-mistake defence. Someone who uses a photo that plainly says who made it cannot claim they had no way of finding out.
- It makes you contactable. A large share of unlicensed use is people who would have paid if they had known who to ask. The notice, and especially a licensing URL in the XMP fields, turns that into a lead.
- It is legally recognised. Embedded rights information is treated as copyright management information under US law, and knowingly stripping it to conceal infringement is itself prohibited — separately from the infringement. This is not legal advice, and the details vary by jurisdiction, but it is why the fields are worth filling in.
- It does not stop copying. Anyone can remove your notice with the same one-line command you used to write it, and anyone who saves your photo from a social platform gets a file with no notice in it without even trying. Treat it as a label, not a lock.
The realistic protection stack is three layers, and metadata is only the first: embedded rights fields on every file you send out; a visible credit on anything going to social media; and your original RAW files, backed up, as the evidence of authorship that no amount of stripping can touch. Metadata is the cheap layer — it costs one command and it works on every file that leaves your machine intact — but it is not the whole answer, and anyone telling you otherwise is selling something.
Frequently Asked Questions
How do I add copyright to a photo's EXIF data?
Write your name into the Artist field and your notice into the Copyright field. With ExifTool that is one command: exiftool -overwrite_original -EXIF:Artist="Jane Doe" -EXIF:Copyright="© 2026 Jane Doe" photo.jpg. In a GUI, the fields are behind a menu item called File Info, Metadata, or Properties. And if you shoot with a Canon, Nikon, Sony, or recent Fujifilm body, set the copyright menu once and the camera fills both fields on every frame it takes from then on.
Which EXIF field holds the copyright?
Two of them. Copyright (tag 0x8298) holds the notice string, and Artist (tag 0x013B) holds the photographer's name — some software displays it as "Author" or "Creator". EXIF has nothing beyond those two, so licensing terms, contact details, and a rights URL have to go in the IPTC and XMP blocks instead.
Does adding copyright to EXIF actually protect my photos?
It asserts your claim; it does not enforce it. You already own the copyright without writing anything into the file — what the metadata adds is that the claim travels with the image, so anyone who opens it knows who made it and how to reach you, and nobody can say they had no way of knowing. It will not stop a determined copier, and it will not survive an upload to Instagram. It is worth doing because it costs nothing and works on every file that is passed around intact, which is most professional work.
Can I add copyright to thousands of photos at once?
Yes. ExifTool's -r flag walks a folder and every subfolder inside it, so one command can stamp an entire archive. Add -if 'not $Copyright' to skip files that already carry a notice, and use ExifTool's date formatting to take the year from each photo's own capture date rather than stamping this year onto a decade of work. If you use Lightroom Classic, a metadata preset applied at import does the same job going forward, automatically.
Does Instagram keep the copyright in my EXIF data?
No. Instagram re-encodes every upload and the metadata blocks go with it — the copy a stranger saves has no author, no notice, no camera, and no timestamp. Facebook, X, and WhatsApp all do the same thing to the public copy. This is not a setting you can turn off, so for social media the credit has to be visible in the pixels or in the caption. Our page on which sites strip EXIF has the full comparison.
Can someone just delete the copyright from my EXIF?
Technically, trivially — it is one command, the same tool, in reverse. Legally it is a different matter: embedded rights information counts as copyright management information under US law, and knowingly removing it to conceal an infringement is prohibited in its own right, separately from the infringement itself. Details vary by country and this is not legal advice, but a stripped notice is not the dead end it looks like.
My photo already has someone else's name in the Artist field. Why?
Almost certainly a camera that was configured by someone else. In a copyright menu is a name, and it persists until it is cleared — so a secondhand body, or one set up by a shop or a previous employer, will keep stamping that name onto your photos. Check a fresh frame in the metadata viewer and clear the camera menu if it is not yours.
Related Guides
What Is IPTC Data?
The block that holds what EXIF cannot: usage terms, credit, contact details, and a licensing URL.
Which Social Media Sites Strip EXIF Data?
Every mainstream platform, side by side — and what the stripping does and does not protect.
EXIF Data Explained
Every field a camera writes into a photo, and what each one means.
EXIF Data for Real Estate Photos
Metadata as proof of who shot what and when — the same fields, put to work in a licensing dispute.
Is your copyright still in the file?
Drop a photo in and read the Artist and Copyright fields straight out of its EXIF. It runs in your browser — the file is never uploaded.