JUCE v8.0.9
JUCE API
 
Loading...
Searching...
No Matches
juce::ImageType Class Referenceabstract

This base class is for handlers that control a type of image manipulation format, e.g. More...

#include <juce_Image.h>

Inheritance diagram for juce::ImageType:

Public Member Functions

 ImageType ()
 
virtual ~ImageType ()
 
virtual Image convert (const Image &source) const
 Returns an image which is a copy of the source image, but using this type of storage mechanism.
 
virtual ImagePixelData::Ptr create (Image::PixelFormat, int width, int height, bool shouldClearImage) const =0
 Creates a new image of this type, and the specified parameters.
 
virtual int getTypeID () const =0
 Must return a unique number to identify this type.
 

Detailed Description

This base class is for handlers that control a type of image manipulation format, e.g.

an in-memory bitmap, an OpenGL image, CoreGraphics image, etc.

See also
SoftwareImageType, NativeImageType, OpenGLImageType

@tags{Graphics}

Constructor & Destructor Documentation

◆ ImageType()

juce::ImageType::ImageType ( )

◆ ~ImageType()

virtual juce::ImageType::~ImageType ( )
virtual

Member Function Documentation

◆ convert()

virtual Image juce::ImageType::convert ( const Image source) const
virtual

Returns an image which is a copy of the source image, but using this type of storage mechanism.

For example, to make sure that an image is stored in-memory, you could use:

myImage = SoftwareImageType().convert (myImage);
virtual Image convert(const Image &source) const
Returns an image which is a copy of the source image, but using this type of storage mechanism.
An image storage type which holds the pixels in-memory as a simple block of values.
Definition juce_Image.h:749

◆ create()

virtual ImagePixelData::Ptr juce::ImageType::create ( Image::PixelFormat  ,
int  width,
int  height,
bool  shouldClearImage 
) const
pure virtual

Creates a new image of this type, and the specified parameters.

Implemented in juce::SoftwareImageType, juce::NativeImageType, and juce::OpenGLImageType.

◆ getTypeID()

virtual int juce::ImageType::getTypeID ( ) const
pure virtual

Must return a unique number to identify this type.

Implemented in juce::SoftwareImageType, juce::NativeImageType, and juce::OpenGLImageType.


The documentation for this class was generated from the following file: