|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
A subclass of ImageFileFormat for reading GIF files. More...
#include "juce_ImageFileFormat.h"
Public Member Functions | |
| String | getFormatName () override |
| Returns a description of this file format. | |
| bool | usesFileExtension (const File &) override |
| Returns true if this format uses the file extension of the given file. | |
| bool | canUnderstand (InputStream &) override |
| Returns true if the given stream seems to contain data that this format understands. | |
| Image | decodeImage (InputStream &) override |
| Tries to decode and return an image from the given stream. | |
| bool | writeImageToStream (const Image &, OutputStream &) override |
| Attempts to write an image to a stream. | |
Public Member Functions inherited from juce::ImageFileFormat | |
| virtual | ~ImageFileFormat ()=default |
| Destructor. | |
Additional Inherited Members | |
Static Public Member Functions inherited from juce::ImageFileFormat | |
| static ImageFileFormat * | findImageFormatForStream (InputStream &input) |
| Tries the built-in formats to see if it can find one to read this stream. | |
| static ImageFileFormat * | findImageFormatForFileExtension (const File &file) |
| Looks for a format that can handle the given file extension. | |
| static Image | loadFrom (InputStream &input) |
| Tries to load an image from a stream. | |
| static Image | loadFrom (const File &file) |
| Tries to load an image from a file. | |
| static Image | loadFrom (const void *rawData, size_t numBytesOfData) |
| Tries to load an image from a block of raw image data. | |
Protected Member Functions inherited from juce::ImageFileFormat | |
| ImageFileFormat ()=default | |
| Creates an ImageFormat. | |
A subclass of ImageFileFormat for reading GIF files.
@tags{Graphics}
Definition at line 208 of file juce_ImageFileFormat.h.
| JUCE_END_IGNORE_WARNINGS_MSVC juce::GIFImageFormat::GIFImageFormat | ( | ) |
Definition at line 423 of file juce_GIFLoader.cpp.
|
override |
Definition at line 424 of file juce_GIFLoader.cpp.
|
overridevirtual |
Returns true if the given stream seems to contain data that this format understands.
The format class should only read the first few bytes of the stream and sniff for header bytes that it understands.
Note that this will advance the stream and leave it in a new position, so if you're planning on re-using it, you may want to rewind it after calling this method.
Implements juce::ImageFileFormat.
Definition at line 429 of file juce_GIFLoader.cpp.
|
overridevirtual |
Tries to decode and return an image from the given stream.
This will be called for an image format after calling its canUnderStand() method to see if it can handle the stream.
| input | the stream to read the data from. The stream will be positioned at the start of the image data (but this may not necessarily be position 0) |
Implements juce::ImageFileFormat.
Definition at line 439 of file juce_GIFLoader.cpp.
|
overridevirtual |
Returns a description of this file format.
E.g. "JPEG", "PNG"
Implements juce::ImageFileFormat.
Definition at line 426 of file juce_GIFLoader.cpp.
Returns true if this format uses the file extension of the given file.
Implements juce::ImageFileFormat.
Definition at line 427 of file juce_GIFLoader.cpp.
|
overridevirtual |
Attempts to write an image to a stream.
To specify extra information like encoding quality, there will be appropriate parameters in the subclasses of the specific file types.
Implements juce::ImageFileFormat.
Definition at line 449 of file juce_GIFLoader.cpp.