|
| template<psd_byte_order byteOrder = psd_byte_order::psdBigEndian> |
| bool | psd_read_blendmode (QIODevice &io, QString &blendModeKey) |
| |
| bool | psdpad (QIODevice &io, quint32 padding) |
| |
| template<psd_byte_order byteOrder = psd_byte_order::psdBigEndian, typename T > |
| std::enable_if_t< std::is_arithmetic< T >::value, bool > | psdread (QIODevice &io, T &v) |
| |
| template<psd_byte_order byteOrder = psd_byte_order::psdBigEndian> |
| bool | psdread_pascalstring (QIODevice &io, QString &s, qint64 padding) |
| |
| template<psd_byte_order byteOrder = psd_byte_order::psdBigEndian> |
| bool | psdread_unicodestring (QIODevice &io, QString &s) |
| |
| bool | psdreadBE (QIODevice &io, quint16 &v) |
| |
| bool | psdreadBE (QIODevice &io, quint32 &v) |
| |
| bool | psdreadBE (QIODevice &io, quint64 &v) |
| |
| bool | psdreadBE (QIODevice &io, quint8 &v) |
| |
| template<typename T > |
| bool | psdreadBE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint16), T & > v) |
| |
| template<typename T > |
| bool | psdreadBE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint32), T & > v) |
| |
| template<typename T > |
| bool | psdreadBE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint64), T & > v) |
| |
| template<typename T > |
| bool | psdreadBE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint8), T & > v) |
| |
| template<psd_byte_order byteOrder = psd_byte_order::psdBigEndian> |
| QByteArray | psdreadBytes (QIODevice &io, qint64 v) |
| |
| template<psd_byte_order byteOrder = psd_byte_order::psdBigEndian> |
| double | psdreadFixedPoint (QIODevice &io) |
| |
| bool | psdreadLE (QIODevice &io, quint16 &v) |
| |
| bool | psdreadLE (QIODevice &io, quint32 &v) |
| |
| bool | psdreadLE (QIODevice &io, quint64 &v) |
| |
| bool | psdreadLE (QIODevice &io, quint8 &v) |
| |
| template<typename T > |
| bool | psdreadLE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint16), T & > v) |
| |
| template<typename T > |
| bool | psdreadLE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint32), T & > v) |
| |
| template<typename T > |
| bool | psdreadLE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint64), T & > v) |
| |
| template<typename T > |
| bool | psdreadLE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint8), T & > v) |
| |
| bool | psdwrite (QIODevice &io, const QString &s) |
| |
| template<psd_byte_order byteOrder = psd_byte_order::psdBigEndian, typename T > |
| std::enable_if_t< std::is_arithmetic< T >::value, bool > | psdwrite (QIODevice &io, T v) |
| |
| template<psd_byte_order byteOrder = psd_byte_order::psdBigEndian> |
| bool | psdwrite_pascalstring (QIODevice &io, const QString &s) |
| |
| template<psd_byte_order byteOrder = psd_byte_order::psdBigEndian> |
| bool | psdwrite_pascalstring (QIODevice &io, const QString &s, int padding) |
| |
| bool | psdwriteBE (QIODevice &io, const quint16 &v) |
| |
| bool | psdwriteBE (QIODevice &io, const quint32 &v) |
| |
| bool | psdwriteBE (QIODevice &io, const quint64 &v) |
| |
| bool | psdwriteBE (QIODevice &io, const quint8 &v) |
| |
| template<typename T > |
| bool | psdwriteBE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint16), T & > v) |
| |
| template<typename T > |
| bool | psdwriteBE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint32), T & > v) |
| |
| template<typename T > |
| bool | psdwriteBE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint64), T & > v) |
| |
| template<typename T > |
| bool | psdwriteBE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint8), T & > v) |
| |
| template<psd_byte_order byteOrder = psd_byte_order::psdBigEndian> |
| void | psdwriteFixedPoint (QIODevice &io, double val) |
| |
| bool | psdwriteLE (QIODevice &io, const quint16 &v) |
| |
| bool | psdwriteLE (QIODevice &io, const quint32 &v) |
| |
| bool | psdwriteLE (QIODevice &io, const quint64 &v) |
| |
| bool | psdwriteLE (QIODevice &io, const quint8 &v) |
| |
| template<typename T > |
| bool | psdwriteLE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint16), T & > v) |
| |
| template<typename T > |
| bool | psdwriteLE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint32), T & > v) |
| |
| template<typename T > |
| bool | psdwriteLE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint64), T & > v) |
| |
| template<typename T > |
| bool | psdwriteLE (QIODevice &io, std::enable_if_t< sizeof(T)==sizeof(quint8), T & > v) |
| |