Home
last modified time | relevance | path

Searched refs:iptc_value (Results 1 – 2 of 2) sorted by relevance

/dports/graphics/freeimage/FreeImage/Source/Metadata/
H A DIPTC.cpp116 BYTE *iptc_value = (BYTE*)malloc((tagByteCount + 1) * sizeof(BYTE)); in read_iptc_profile() local
117 memset(iptc_value, 0, (tagByteCount + 1) * sizeof(BYTE)); in read_iptc_profile()
127 short *pvalue = (short*)&iptc_value[0]; in read_iptc_profile()
145 iptc_value[i] = profile[offset + i]; in read_iptc_profile()
147 iptc_value[tagByteCount] = '\0'; in read_iptc_profile()
148 FreeImage_SetTagValue(tag, (char*)&iptc_value[0]); in read_iptc_profile()
156 SupplementalCategory.append((char*)iptc_value); in read_iptc_profile()
159 SupplementalCategory.append((char*)iptc_value); in read_iptc_profile()
165 Keywords.append((char*)iptc_value); in read_iptc_profile()
168 Keywords.append((char*)iptc_value); in read_iptc_profile()
[all …]
/dports/graphics/gexiv2/gexiv2-0.12.3/gexiv2/
H A Dgexiv2-metadata-iptc.cpp231 auto iptc_value = Exiv2::Value::create(Exiv2::string); in gexiv2_metadata_set_iptc_tag_multiple() local
235 iptc_value->read (static_cast<const std::string>(*it)); in gexiv2_metadata_set_iptc_tag_multiple()
236 iptc_data.add (iptc_key, iptc_value.get()); in gexiv2_metadata_set_iptc_tag_multiple()