.. _program_listing_file_include_zim_illustration.h: Program Listing for File illustration.h ======================================= |exhale_lsh| :ref:`Return to documentation for file ` (``include/zim/illustration.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp /* * Copyright (C) 2025 Veloman Yunkan * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * is provided AS IS, WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, and * NON-INFRINGEMENT. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifndef ZIM_ILLUSTRATION_H #define ZIM_ILLUSTRATION_H #include "zim/zim.h" #include namespace zim { class LIBZIM_API Attributes : public std::map { typedef std::map ImplType; public: Attributes() {} Attributes(const ImplType& x) : ImplType(x) {} Attributes(const std::initializer_list& x) : ImplType(x) {} static Attributes parse(const std::string& s); }; struct LIBZIM_API IllustrationInfo { uint32_t width; // in CSS pixels uint32_t height; // in CSS pixels float scale; // devicePixelRatio value of the targeted display media Attributes extraAttributes; // additional attributes of the illustration std::string asMetadataItemName() const; static IllustrationInfo fromMetadataItemName(const std::string& s); }; inline bool operator==(const IllustrationInfo& a, const IllustrationInfo& b) { return a.width == b.width && a.height == b.height && a.scale == b.scale && a.extraAttributes == b.extraAttributes; } } // namespace zim #endif // ZIM_ILLUSTRATION_H