JUCE  v6.1.6 (6.0.8-1114)
JUCE API
Looking for a senior C++ dev?
I'm looking for work. Hire me!
juce::SoftwareImageType Class Reference

An image storage type which holds the pixels in-memory as a simple block of values. More...

#include <juce_Image.h>

Inheritance diagram for juce::SoftwareImageType:
Collaboration diagram for juce::SoftwareImageType:

Public Member Functions

 SoftwareImageType ()
 
 ~SoftwareImageType () override
 
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. More...
 
ImagePixelData::Ptr create (Image::PixelFormat, int width, int height, bool clearImage) const override
 Creates a new image of this type, and the specified parameters. More...
 
int getTypeID () const override
 Must return a unique number to identify this type. More...
 

Detailed Description

An image storage type which holds the pixels in-memory as a simple block of values.

See also
ImageType, NativeImageType

@tags{Graphics}

Constructor & Destructor Documentation

◆ SoftwareImageType()

juce::SoftwareImageType::SoftwareImageType ( )

◆ ~SoftwareImageType()

juce::SoftwareImageType::~SoftwareImageType ( )
override

Member Function Documentation

◆ convert()

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

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);

◆ create()

ImagePixelData::Ptr juce::SoftwareImageType::create ( Image::PixelFormat  ,
int  width,
int  height,
bool  shouldClearImage 
) const
overridevirtual

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

Implements juce::ImageType.

◆ getTypeID()

int juce::SoftwareImageType::getTypeID ( ) const
overridevirtual

Must return a unique number to identify this type.

Implements juce::ImageType.


The documentation for this class was generated from the following file:
juce::SoftwareImageType::SoftwareImageType
SoftwareImageType()