taglib/bindings/c
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 Do not use tabs in CMake files 2023-09-30 15:12:51 +02:00
tag_c.cpp C bindings for complex properties like pictures (#953) 2023-10-21 06:19:55 +02:00
tag_c.h C bindings for complex properties like pictures (#953) 2023-10-21 06:19:55 +02:00
taglib_c.pc.cmake cmake: support both relative and absolute paths for pc files (#1152) 2023-09-30 14:25:00 +02:00