taglib/examples
Urs Fleisch a3ad2d0aaa C bindings for complex properties like pictures (#953)
Provides a unified API for complex properties in the same way as
the Properties API in the C bindings. Since constructing and
traversing complex properties in C is a bit complicated, there
are convenience functions for the most common use case of getting
or setting a single picture.

    TAGLIB_COMPLEX_PROPERTY_PICTURE(props, data, size, "Written by TagLib",
                                   "image/jpeg", "Front Cover");
    taglib_complex_property_set(file, "PICTURE", props);

and

    TagLib_Complex_Property_Attribute*** properties =
      taglib_complex_property_get(file, "PICTURE");
    TagLib_Complex_Property_Picture_Data picture;
    taglib_picture_from_complex_property(properties, &picture);
2023-10-21 06:19:55 +02:00
..
CMakeLists.txt Install examples after we selected to build them 2021-03-06 14:52:25 +01:00
framelist.cpp unused includes (#1133) 2023-09-16 08:22:36 +02:00
strip-id3v1.cpp unused includes (#1133) 2023-09-16 08:22:36 +02:00
tagreader_c.c C bindings for complex properties like pictures (#953) 2023-10-21 06:19:55 +02:00
tagreader.cpp Unified interface for complex properties like pictures (#94) 2023-10-14 09:01:59 +02:00
tagwriter.cpp Unified interface for complex properties like pictures (#94) 2023-10-14 09:01:59 +02:00