Hello i have my own background image for my interface, But when i try to adjust the size to fill the background, It won’t do it,
void CompressorAudioProcessorEditor::paint (juce::Graphics& g)
{
// (Our component is opaque, so we must completely fill the background with a solid colour)
g.fillAll(getLookAndFeel().findColour(juce::ResizableWindow::backgroundColourId));
g.setColour (juce::Colours::white);
Background = juce::ImageCache::getFromMemory(BinaryData::Background_png, BinaryData::Background_pngSize);
g.drawImageWithin(Background, 0, 0, getWidth(), getHeight(), juce::RectanglePlacement::stretchToFit);