rename image files

This commit is contained in:
Armin 2026-07-14 11:21:57 +02:00
commit 277ab86547
7 changed files with 5 additions and 5 deletions

View file

@ -22,8 +22,8 @@ endif()
juce_add_binary_data(ChromaFlockBinaryData juce_add_binary_data(ChromaFlockBinaryData
NAMESPACE BinaryData NAMESPACE BinaryData
SOURCES SOURCES
chromaflockbg5.png bg.png
cf3d02.png cf3d.png
) )
if(APPLE) if(APPLE)

View file

@ -1,6 +1,6 @@
# ChromaFlock # ChromaFlock
![ChromaFlock](seriouslogo2.png) ![ChromaFlock](logo.png)
A subtractive synthesizer plugin built with [JUCE](https://juce.com). macOS (VST3, AU, Standalone) and Linux (VST3, Standalone). A subtractive synthesizer plugin built with [JUCE](https://juce.com). macOS (VST3, AU, Standalone) and Linux (VST3, Standalone).

View file

@ -691,7 +691,7 @@ void MainContentComponent::paint(juce::Graphics& g) {
// Draw background image tiled // Draw background image tiled
if (!bgImageLoaded) { if (!bgImageLoaded) {
bgImage = juce::ImageFileFormat::loadFrom( bgImage = juce::ImageFileFormat::loadFrom(
BinaryData::chromaflockbg5_png, BinaryData::chromaflockbg5_pngSize); BinaryData::bg_png, BinaryData::bg_pngSize);
bgImageLoaded = true; bgImageLoaded = true;
} }
if (bgImage.isValid()) { if (bgImage.isValid()) {
@ -710,7 +710,7 @@ void MainContentComponent::paint(juce::Graphics& g) {
// Load logo // Load logo
if (!logoLoaded) { if (!logoLoaded) {
auto img = juce::ImageFileFormat::loadFrom( auto img = juce::ImageFileFormat::loadFrom(
BinaryData::cf3d02_png, BinaryData::cf3d02_pngSize); BinaryData::cf3d_png, BinaryData::cf3d_pngSize);
if (img.isValid()) { if (img.isValid()) {
juce::Image::BitmapData bd(img, juce::Image::BitmapData::readOnly); juce::Image::BitmapData bd(img, juce::Image::BitmapData::readOnly);
int minX = bd.width, maxX = 0, minY = bd.height, maxY = 0; int minX = bd.width, maxX = 0, minY = bd.height, maxY = 0;

View file

Before

Width:  |  Height:  |  Size: 587 KiB

After

Width:  |  Height:  |  Size: 587 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 230 KiB

After

Width:  |  Height:  |  Size: 230 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 116 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 250 KiB

After

Width:  |  Height:  |  Size: 250 KiB

Before After
Before After