I
am using jpeg metadata utility in c#. I want to remove the old keyword tags and
add new tags. When I used metaAdapter.Metadata.Keywords.Add(“”) it overwrites
with existing keywords. But I want to clear the existing keywords. Finally I
used clear function () before adding keyword.
Example:
JpegMetadataAdapter
metaAdapter = new JpegMetadataAdapter(filePath);
metaAdapter.Metadata.Title
= "Bus picture";
metaAdapter.Metadata.Subject
= "New modern bus";
metaAdapter.Metadata.Keywords.Clear();
metaAdapter.Metadata.Keywords.Add("transport");
bool
saved = metaAdapter.Save();
More
details at https://github.com/mwijnands/JpegMetadata.
Note: This nuget package is available in NuGet.
Post your comments / questions
Recent Article
- How to Encode & Decode using Base64 in Python?
- Unspecified error-The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support.
- How to generate a Captcha verification code image with Python?
- How to show an image using path python PIL?
- How to remove Background from the images using Python?
- Python generate QR code image
- Insert excel file data into MySQL database in Python
- ImportError: Missing optional dependency 'xlrd' | How tot Convert xls to xlsx | Python
Related Article