117 questions
0
votes
0
answers
153
views
Add keywords to IPTC from same named txt files using Exiftool with batch command
I'm using AI Blip Captioning to create descriptions, keywords automatically. As you might know it creates txt files with exact same of the image. But what I want is to also add these keywords inside ...
1
vote
1
answer
871
views
Delete metadata descriptions with a Photoshop Script?
Is there an equivalent of deleteProperty(XMPConst.NS_DC, "description”) or some way to clear out EXIF:ImageDescription, XMP-dc:Description and IPTC:Caption-Abstract with a Photoshop Script (ie, ...
0
votes
1
answer
134
views
PHP syntax for iptcembed(): I can't seem to properly take care of "int $spool = 0): string|bool"
What is the proper syntax for that function?
iptcembed('Cincinnati','https://www.stev.com/TMuploads/Hebe%20-%202022%202023%200107%201859%2010.jpg',['2#120'][0]);
I've manually inserted %20 for each ...
0
votes
2
answers
207
views
Is it possible to configure a Next.js application to automatically add IPTC data on all website images by customizing the Image Optimization step?
I have a Next.js 13 website running with proprietary images.
Some of them have IPTC Photo Metadata but Next.js Image optimization by default is removing them.
Is it possible to customize Next.js app ...
0
votes
0
answers
1k
views
Using MetadataExtractor in C# to get IPTC data
I've been struggling with how to get the various fields stored in .jpg and other image formats to store into a database with the record for the image.
I have the database stuff wired and am using ...
3
votes
1
answer
707
views
How do I add different IPTC keywords to multiple images?
I have a folder containing thousands of images and each image needs a unique list of keywords added to it. I also have a table with fields showing the file path and associated list of desired keywords ...
0
votes
1
answer
3k
views
The process cannot access the file because it is being used by another process. "the same process that is running it"
ok I know what the issue is, but not how to solve it.
basically the process cannot access the file because it is being used by the same code previously. idk just need some way to run this code or ...
1
vote
1
answer
3k
views
Python TypeError: 'bytes' object cannot be interpreted as an integer. How to add 'bytes'?
I got an error TypeError: 'bytes' object cannot be interpreted as an integer when I use save, what to do to make it right?
I want to save in same image, not to create a new one.
from iptcinfo3 import ...
0
votes
1
answer
773
views
Copy IPTC Core data from JPG to PNG files (with the same filename, in batch)
I like to copy...
IPTC Core Title
IPTC Core Headline
IPTC Core Keywords
in a folder of JPG EPS and PNG files with the same filename, from JPGs to PNGs running a command in Exiftool which would do it ...
0
votes
3
answers
688
views
What is the simplest way to write XMP data to a JPEG image in PHP?
I only want to add the 2 fields required by Google for the Licensable badge:
Web Statement of Rights
Licensor URL
I'm able to write standard IPTC fields but these two seems to require XMP.
As a ...
0
votes
1
answer
63
views
I like to put three dots, "..." at the end of my image files' IPTC Core Title metadata
I like to put three dots, "..." at the end of my image files' IPTC Core Title metadata
Help is much appreciated!
Edit: In bulk for 1000s of files
0
votes
1
answer
117
views
convert IPTC taxonomy to Boolean Expression
Can one change IPTC taxonomy to boolean expression? For easing the exchange of news, the International Press Telecommunication Council (IPTC) has developed the NewsML Architecture (NAR), As part of ...
2
votes
3
answers
825
views
How to add keywords in image file with PHP?
I try to add keywords with this method
//echoing the img to check the path
echo "<img src='uploads/Background597x1050px.jpg'>";
//creating the object and use of setImageProperty ...
0
votes
1
answer
2k
views
extract IPTC data from JPG images with VBA
I've just created a button on excel that allows me to select a folder and display the name of the files it contains.
Sub extract_IPTC_From_Folder()
On Error GoTo err
Dim fileExplorer As FileDialog
Dim ...
0
votes
2
answers
672
views
Run python-iptables (iptc) as non-root user
I am trying to run the python-iptables as a non-root user.
My script is test.py:
import iptc
import os
uid = os.getuid()
print("Real user ID of the current process:", uid)
table = iptc....