What field contains copyright info in EXIF? - exif

How can I add copyright information to an image using gexiv2? I've read this but couldn't find which field I need to edit for this.

The Exiv2 library provides a comprehensive list of Exif tags available to you as defined by the Exif 2.2 standard.
You'd need to modify Exif.Image.Copyright in particular. The tag ID is "0x8298".

You can set exif tag information.
Here a sample code
import pyexiv2
metadata = pyexiv2.ImageMetadata("your_image.jpg")
metadata.read()
metadata["Exif.Image.Copyright"] = "Copyright, Harun ERGÜL. All rights reserved."
metadata.write()

Related

<MSHelp:Attr> attributes in Microsoft Help Viewer/MSHC

The help pages in the MSHelp2/HxS help format contain MSHelp:Attr attributes like this:
<MSHelp:Attr Name="DocSet" Value="Visual Basic" />
These attributes could be used for filtering content in MSHelp2/HxS viewers.
We converted HxS helps we have to the newest MSHC format using the mshcMigrate utility and are now viewing them in the Microsoft Help Viewer supplied with VS IDE. Are these MSHelp:Attr attributes are supported anyhow in the Microsoft MSHC viewer?

Aspose.Words MailMerge text object tagging in .Net

Anyone know how to tag text objects from Aspose.Words MailMerge, this is to be compatible with the PDF/UA standard. I would appreciate any code samples and/or links
You should simply enable PdfSaveOptions.ExportDocumentStructure option. Aspose.Words exports PDF/UA compatible document structure.

OFFIS DICOM scope toolkit Structured report link to image

Does anybody knows how to create a structured report using dicom scope toolkit via console (ubuntu 16.04) with a link to a related image?
The thing is that I have an image of some kind of trauma and I have to connect with a report which is in a text file. The last file should be in .dcm format which contains annotation and a link to an image. I have to use dicom scope program.
Maybe others refrain from answering because your question needs a very long answer. I cannot provide step-by-step instructions, a few hints, though.
The way I would go is to:
(assuming that your image is available in DICOM format):
obtain a sample structured report. I think that the "simple" Basic Text SR is what you want to go for. You can find some samples here.
convert the SR to an XML file using dsr2xml
edit the contents in XML. Do not forget to include your image reference in (0040,a730) Content Sequence -> (0008,1199) Referenced SOP Sequence
convert the XML back to DICOM SR using xml2dsr
By the way: From your question, I did not really understand why you want to use a structured report, as you wrote that your report is plain text. Instead of digging into the complex structure of SR, you may want to consider exporting the report to an Encapsulated PDF document which can reference images as well.

Add custom XMP Tags

I am looking for a tool or a way (.NET) to add custom XMP fields. Also, can someone explain the purpose of needing to know if the XMP tag is a textfield, textarea or a select?
XMP is written inside files as an XML packet or as a separate XML file. The XMP specification uses a subset of RDF/XML. So you could look at (RDF/)XML manipulation tools.
For embedded XPackets however, the packet length needs to be calculated and written at the start of the packet, so it may help to have a purpose built library. Adobe provides an XMP SDK (C++) for that.
XMP supports several content types for fields, like Text, Number or URL. Text fields, for example, could be restricted to values from a controlled vocabulary, for which it may make sense to use a select or dropdown form element in a GUI.

How to access a excel file in CF8?

How to read an excel file from cfm page?
That depends on what you want to do. If you simply need to upload the file, you can use the cffile tag (CF8 documentation here).
If you want to extract data from it, you may want to look at Ben Nadel's POI Utility CFC. (Note that it's not been updated since the release of CF9 because of the introduction of the cfspreadsheet tag in that version of ColdFusion.)

Resources