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
- ModuleNotFounEerror:No module named celery in Django Project
- How to get domain name information from a Domain using Python
- ModulenotFoundError: no module named 'debug_toolbar' -SOLUTION
- How to create superuser in django project hosted in cPanel without terminal
- CSS & images not loading in django admin | cpanel without terminal
- Could not build wheels for mysqlclient, which is required to install pyproject.toml-based projects
- How to sell domain name on Godaddy (2023)
- TemplateSyntaxError at / Could not parse the remainder: ' + 1' from 'forloop.counter0 + 1'
Related Article