| void | _create | | Ensures the C++ object is created |
| void | _destroy | | Explicitly destroys the object |
| [const] | bool | _destroyed? | | Returns a value indicating whether the object was already destroyed |
| [const] | bool | _is_const_object? | | Returns a value indicating whether the reference is a const reference |
| void | _manage | | Marks the object as managed by the script side. |
| void | _unmanage | | Marks the object as no longer owned by the script side. |
| [const] | bool | autoDetectImageFormat | | Method bool QImageReader::autoDetectImageFormat() |
| void | autoDetectImageFormat= | (bool enabled) | Method void QImageReader::setAutoDetectImageFormat(bool enabled) |
| [const] | QColor | backgroundColor | | Method QColor QImageReader::backgroundColor() |
| void | backgroundColor= | (const QColor color) | Method void QImageReader::setBackgroundColor(const QColor &color) |
| [const] | bool | canRead | | Method bool QImageReader::canRead() |
| [const] | QRect | clipRect | | Method QRect QImageReader::clipRect() |
| void | clipRect= | (const QRect rect) | Method void QImageReader::setClipRect(const QRect &rect) |
| [const] | int | currentImageNumber | | Method int QImageReader::currentImageNumber() |
| [const] | QRect | currentImageRect | | Method QRect QImageReader::currentImageRect() |
| [const] | bool | decideFormatFromContent | | Method bool QImageReader::decideFormatFromContent() |
| void | decideFormatFromContent= | (bool ignored) | Method void QImageReader::setDecideFormatFromContent(bool ignored) |
| [const] | QIODevice ptr | device | | Method QIODevice *QImageReader::device() |
| void | device= | (QIODevice ptr device) | Method void QImageReader::setDevice(QIODevice *device) |
| [const] | QImageReader_ImageReaderError | error | | Method QImageReader::ImageReaderError QImageReader::error() |
| [const] | string | errorString | | Method QString QImageReader::errorString() |
| [const] | string | fileName | | Method QString QImageReader::fileName() |
| void | fileName= | (string fileName) | Method void QImageReader::setFileName(const QString &fileName) |
| [const] | string | format | | Method QByteArray QImageReader::format() |
| void | format= | (string format) | Method void QImageReader::setFormat(const QByteArray &format) |
| [const] | int | imageCount | | Method int QImageReader::imageCount() |
| [const] | QImage_Format | imageFormat | | Method QImage::Format QImageReader::imageFormat() |
| bool | jumpToImage | (int imageNumber) | Method bool QImageReader::jumpToImage(int imageNumber) |
| bool | jumpToNextImage | | Method bool QImageReader::jumpToNextImage() |
| [const] | int | loopCount | | Method int QImageReader::loopCount() |
| [const] | int | nextImageDelay | | Method int QImageReader::nextImageDelay() |
| [const] | int | quality | | Method int QImageReader::quality() |
| void | quality= | (int quality) | Method void QImageReader::setQuality(int quality) |
| QImage | read | | Method QImage QImageReader::read() |
| bool | read | (QImage ptr image) | Method bool QImageReader::read(QImage *image) |
| [const] | QRect | scaledClipRect | | Method QRect QImageReader::scaledClipRect() |
| void | scaledClipRect= | (const QRect rect) | Method void QImageReader::setScaledClipRect(const QRect &rect) |
| [const] | QSize | scaledSize | | Method QSize QImageReader::scaledSize() |
| void | scaledSize= | (const QSize size) | Method void QImageReader::setScaledSize(const QSize &size) |
| void | setAutoDetectImageFormat | (bool enabled) | Method void QImageReader::setAutoDetectImageFormat(bool enabled) |
| void | setBackgroundColor | (const QColor color) | Method void QImageReader::setBackgroundColor(const QColor &color) |
| void | setClipRect | (const QRect rect) | Method void QImageReader::setClipRect(const QRect &rect) |
| void | setDecideFormatFromContent | (bool ignored) | Method void QImageReader::setDecideFormatFromContent(bool ignored) |
| void | setDevice | (QIODevice ptr device) | Method void QImageReader::setDevice(QIODevice *device) |
| void | setFileName | (string fileName) | Method void QImageReader::setFileName(const QString &fileName) |
| void | setFormat | (string format) | Method void QImageReader::setFormat(const QByteArray &format) |
| void | setQuality | (int quality) | Method void QImageReader::setQuality(int quality) |
| void | setScaledClipRect | (const QRect rect) | Method void QImageReader::setScaledClipRect(const QRect &rect) |
| void | setScaledSize | (const QSize size) | Method void QImageReader::setScaledSize(const QSize &size) |
| [const] | QSize | size | | Method QSize QImageReader::size() |
| [const] | bool | supportsAnimation | | Method bool QImageReader::supportsAnimation() |
| [const] | bool | supportsOption | (const QImageIOHandler_ImageOption option) | Method bool QImageReader::supportsOption(QImageIOHandler::ImageOption option) |
| [const] | string | text | (string key) | Method QString QImageReader::text(const QString &key) |
| [const] | string[] | textKeys | | Method QStringList QImageReader::textKeys() |
DeviceError | Signature: [static,const] QImageReader_ImageReaderError DeviceError Description: Enum constant QImageReader::DeviceError |
FileNotFoundError | Signature: [static,const] QImageReader_ImageReaderError FileNotFoundError Description: Enum constant QImageReader::FileNotFoundError |
InvalidDataError | Signature: [static,const] QImageReader_ImageReaderError InvalidDataError Description: Enum constant QImageReader::InvalidDataError |
UnknownError | Signature: [static,const] QImageReader_ImageReaderError UnknownError Description: Enum constant QImageReader::UnknownError |
UnsupportedFormatError | Signature: [static,const] QImageReader_ImageReaderError UnsupportedFormatError Description: Enum constant QImageReader::UnsupportedFormatError |
_create | Signature: void _create Description: Ensures the C++ object is created
Use this method to ensure the C++ object is created, for example to ensure that resources are allocated. Usually C++ objects are created on demand and not necessarily when the script object is created. |
_destroy | Signature: void _destroy Description: Explicitly destroys the object
Explicitly destroys the object on C++ side if it was owned by the script interpreter. Subsequent access to this object will throw an exception.
If the object is not owned by the script, this method will do nothing. |
_destroyed? | Signature: [const] bool _destroyed? Description: Returns a value indicating whether the object was already destroyed
This method returns true, if the object was destroyed, either explicitly or by the C++ side.
The latter may happen, if the object is owned by a C++ object which got destroyed itself. |
_is_const_object? | Signature: [const] bool _is_const_object? Description: Returns a value indicating whether the reference is a const reference
This method returns true, if self is a const reference.
In that case, only const methods may be called on self. |
_manage | Signature: void _manage Description: Marks the object as managed by the script side.
After calling this method on an object, the script side will be responsible for the management of the object. This method may be called if an object is returned from a C++ function and the object is known not to be owned by any C++ instance. If necessary, the script side may delete the object if the script's reference is no longer required. Usually it's not required to call this method. It has been introduced in version 0.24. |
_unmanage | Signature: void _unmanage Description: Marks the object as no longer owned by the script side.
Calling this method will make this object no longer owned by the script's memory management. Instead, the object must be managed in some other way. Usually this method may be called if it is known that some C++ object holds and manages this object. Technically speaking, this method will turn the script's reference into a weak reference. After the script engine decides to delete the reference, the object itself will still exist. If the object is not managed otherwise, memory leaks will occur. Usually it's not required to call this method. It has been introduced in version 0.24. |
autoDetectImageFormat | Signature: [const] bool autoDetectImageFormat Description: Method bool QImageReader::autoDetectImageFormat() Python specific notes: The object exposes a readable attribute 'autoDetectImageFormat'. This is the getter.
|
autoDetectImageFormat= | Signature: void autoDetectImageFormat= (bool enabled) Description: Method void QImageReader::setAutoDetectImageFormat(bool enabled) Python specific notes: The object exposes a writable attribute 'autoDetectImageFormat'. This is the setter.
|
backgroundColor | Signature: [const] QColor backgroundColor Description: Method QColor QImageReader::backgroundColor() Python specific notes: The object exposes a readable attribute 'backgroundColor'. This is the getter.
|
backgroundColor= | Signature: void backgroundColor= (const QColor color) Description: Method void QImageReader::setBackgroundColor(const QColor &color) Python specific notes: The object exposes a writable attribute 'backgroundColor'. This is the setter.
|
canRead | Signature: [const] bool canRead Description: Method bool QImageReader::canRead() |
clipRect | Signature: [const] QRect clipRect Description: Method QRect QImageReader::clipRect() Python specific notes: The object exposes a readable attribute 'clipRect'. This is the getter.
|
clipRect= | Signature: void clipRect= (const QRect rect) Description: Method void QImageReader::setClipRect(const QRect &rect) Python specific notes: The object exposes a writable attribute 'clipRect'. This is the setter.
|
create | Signature: void create Description: Ensures the C++ object is created Use of this method is deprecated. Use _create instead |
currentImageNumber | Signature: [const] int currentImageNumber Description: Method int QImageReader::currentImageNumber() |
currentImageRect | Signature: [const] QRect currentImageRect Description: Method QRect QImageReader::currentImageRect() |
decideFormatFromContent | Signature: [const] bool decideFormatFromContent Description: Method bool QImageReader::decideFormatFromContent() Python specific notes: The object exposes a readable attribute 'decideFormatFromContent'. This is the getter.
|
decideFormatFromContent= | Signature: void decideFormatFromContent= (bool ignored) Description: Method void QImageReader::setDecideFormatFromContent(bool ignored) Python specific notes: The object exposes a writable attribute 'decideFormatFromContent'. This is the setter.
|
destroy | Signature: void destroy Description: Explicitly destroys the object Use of this method is deprecated. Use _destroy instead |
destroyed? | Signature: [const] bool destroyed? Description: Returns a value indicating whether the object was already destroyed Use of this method is deprecated. Use _destroyed? instead |
device | Signature: [const] QIODevice ptr device Description: Method QIODevice *QImageReader::device() Python specific notes: The object exposes a readable attribute 'device'. This is the getter.
|
device= | Signature: void device= (QIODevice ptr device) Description: Method void QImageReader::setDevice(QIODevice *device) Python specific notes: The object exposes a writable attribute 'device'. This is the setter.
|
error | Signature: [const] QImageReader_ImageReaderError error Description: Method QImageReader::ImageReaderError QImageReader::error() |
errorString | Signature: [const] string errorString Description: Method QString QImageReader::errorString() |
fileName | Signature: [const] string fileName Description: Method QString QImageReader::fileName() Python specific notes: The object exposes a readable attribute 'fileName'. This is the getter.
|
fileName= | Signature: void fileName= (string fileName) Description: Method void QImageReader::setFileName(const QString &fileName) Python specific notes: The object exposes a writable attribute 'fileName'. This is the setter.
|
format | Signature: [const] string format Description: Method QByteArray QImageReader::format() Python specific notes: The object exposes a readable attribute 'format'. This is the getter.
|
format= | Signature: void format= (string format) Description: Method void QImageReader::setFormat(const QByteArray &format) Python specific notes: The object exposes a writable attribute 'format'. This is the setter.
|
imageCount | Signature: [const] int imageCount Description: Method int QImageReader::imageCount() |
imageFormat | Signature: [const] QImage_Format imageFormat Description: Method QImage::Format QImageReader::imageFormat() Python specific notes: This method is available as method '_inst_imageFormat' in Python
|
Signature: [static] string imageFormat (string fileName) Description: Static method QByteArray QImageReader::imageFormat(const QString &fileName)
This method is static and can be called without an instance. Python specific notes: This method is available as method '_class_imageFormat' in Python
|
Signature: [static] string imageFormat (QIODevice ptr device) Description: Static method QByteArray QImageReader::imageFormat(QIODevice *device)
This method is static and can be called without an instance. Python specific notes: This method is available as method '_class_imageFormat' in Python
|
is_const_object? | Signature: [const] bool is_const_object? Description: Returns a value indicating whether the reference is a const reference Use of this method is deprecated. Use _is_const_object? instead |
jumpToImage | Signature: bool jumpToImage (int imageNumber) Description: Method bool QImageReader::jumpToImage(int imageNumber) |
jumpToNextImage | Signature: bool jumpToNextImage Description: Method bool QImageReader::jumpToNextImage() |
loopCount | Signature: [const] int loopCount Description: Method int QImageReader::loopCount() |
new | Signature: [static] new QImageReader new Description: Constructor QImageReader::QImageReader()
This method creates an object of class QImageReader. Python specific notes: This method is the default initializer of the object
|
Signature: [static] new QImageReader new (QIODevice ptr device,string format = QByteArray()) Description: Constructor QImageReader::QImageReader(QIODevice *device, const QByteArray &format)
This method creates an object of class QImageReader. Python specific notes: This method is the default initializer of the object
|
Signature: [static] new QImageReader new (string fileName,string format = QByteArray()) Description: Constructor QImageReader::QImageReader(const QString &fileName, const QByteArray &format)
This method creates an object of class QImageReader. Python specific notes: This method is the default initializer of the object
|
nextImageDelay | Signature: [const] int nextImageDelay Description: Method int QImageReader::nextImageDelay() |
quality | Signature: [const] int quality Description: Method int QImageReader::quality() Python specific notes: The object exposes a readable attribute 'quality'. This is the getter.
|
quality= | Signature: void quality= (int quality) Description: Method void QImageReader::setQuality(int quality) Python specific notes: The object exposes a writable attribute 'quality'. This is the setter.
|
read | Signature: QImage read Description: Method QImage QImageReader::read() |
Signature: bool read (QImage ptr image) Description: Method bool QImageReader::read(QImage *image) |
scaledClipRect | Signature: [const] QRect scaledClipRect Description: Method QRect QImageReader::scaledClipRect() Python specific notes: The object exposes a readable attribute 'scaledClipRect'. This is the getter.
|
scaledClipRect= | Signature: void scaledClipRect= (const QRect rect) Description: Method void QImageReader::setScaledClipRect(const QRect &rect) Python specific notes: The object exposes a writable attribute 'scaledClipRect'. This is the setter.
|
scaledSize | Signature: [const] QSize scaledSize Description: Method QSize QImageReader::scaledSize() Python specific notes: The object exposes a readable attribute 'scaledSize'. This is the getter.
|
scaledSize= | Signature: void scaledSize= (const QSize size) Description: Method void QImageReader::setScaledSize(const QSize &size) Python specific notes: The object exposes a writable attribute 'scaledSize'. This is the setter.
|
setAutoDetectImageFormat | Signature: void setAutoDetectImageFormat (bool enabled) Description: Method void QImageReader::setAutoDetectImageFormat(bool enabled) Python specific notes: The object exposes a writable attribute 'autoDetectImageFormat'. This is the setter.
|
setBackgroundColor | Signature: void setBackgroundColor (const QColor color) Description: Method void QImageReader::setBackgroundColor(const QColor &color) Python specific notes: The object exposes a writable attribute 'backgroundColor'. This is the setter.
|
setClipRect | Signature: void setClipRect (const QRect rect) Description: Method void QImageReader::setClipRect(const QRect &rect) Python specific notes: The object exposes a writable attribute 'clipRect'. This is the setter.
|
setDecideFormatFromContent | Signature: void setDecideFormatFromContent (bool ignored) Description: Method void QImageReader::setDecideFormatFromContent(bool ignored) Python specific notes: The object exposes a writable attribute 'decideFormatFromContent'. This is the setter.
|
setDevice | Signature: void setDevice (QIODevice ptr device) Description: Method void QImageReader::setDevice(QIODevice *device) Python specific notes: The object exposes a writable attribute 'device'. This is the setter.
|
setFileName | Signature: void setFileName (string fileName) Description: Method void QImageReader::setFileName(const QString &fileName) Python specific notes: The object exposes a writable attribute 'fileName'. This is the setter.
|
setFormat | Signature: void setFormat (string format) Description: Method void QImageReader::setFormat(const QByteArray &format) Python specific notes: The object exposes a writable attribute 'format'. This is the setter.
|
setQuality | Signature: void setQuality (int quality) Description: Method void QImageReader::setQuality(int quality) Python specific notes: The object exposes a writable attribute 'quality'. This is the setter.
|
setScaledClipRect | Signature: void setScaledClipRect (const QRect rect) Description: Method void QImageReader::setScaledClipRect(const QRect &rect) Python specific notes: The object exposes a writable attribute 'scaledClipRect'. This is the setter.
|
setScaledSize | Signature: void setScaledSize (const QSize size) Description: Method void QImageReader::setScaledSize(const QSize &size) Python specific notes: The object exposes a writable attribute 'scaledSize'. This is the setter.
|
size | Signature: [const] QSize size Description: Method QSize QImageReader::size() Python specific notes: This method is also available as 'len(object)'
|
supportedImageFormats | Signature: [static] string[] supportedImageFormats Description: Static method QList<QByteArray> QImageReader::supportedImageFormats()
This method is static and can be called without an instance. |
supportsAnimation | Signature: [const] bool supportsAnimation Description: Method bool QImageReader::supportsAnimation() |
supportsOption | Signature: [const] bool supportsOption (const QImageIOHandler_ImageOption option) Description: Method bool QImageReader::supportsOption(QImageIOHandler::ImageOption option) |
text | Signature: [const] string text (string key) Description: Method QString QImageReader::text(const QString &key) |
textKeys | Signature: [const] string[] textKeys Description: Method QStringList QImageReader::textKeys() |