mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-02 00:29:41 +02:00
68 lines
2.6 KiB
C++
68 lines
2.6 KiB
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ImageManipulation.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#include "MemoryX.h"
|
|
#include <wx/defs.h>
|
|
|
|
class wxColour;
|
|
class wxImage;
|
|
|
|
// This looks at the first pixel in the image, and shifts
|
|
// the entire image by the vector difference between that
|
|
// pixel and the dstColour. For better control, use
|
|
// ChangeImageColour(wxImage, wxColour*, wxColour*) below
|
|
std::unique_ptr<wxImage> ChangeImageColour(wxImage * srcImage, wxColour & dstColour);
|
|
|
|
// This function takes a source image, which it assumes to
|
|
// be grayscale, and smoothly changes the overall color
|
|
// to the specified color, and returns the result as a
|
|
// NEW image. This works well for grayscale 3D images.
|
|
// Audacity uses this routines to make the buttons
|
|
// (skip-start, play, stop, record, skip-end) adapt to
|
|
// the color scheme of the user.
|
|
std::unique_ptr<wxImage> ChangeImageColour(wxImage * srcImage,
|
|
wxColour & srcColour,
|
|
wxColour & dstColour);
|
|
|
|
// Takes a background image, foreground image, and mask
|
|
// (i.e. the alpha channel for the foreground), and
|
|
// returns an NEW image where the foreground has been
|
|
// overlaid onto the background using alpha-blending,
|
|
// at location (xoff, yoff).
|
|
std::unique_ptr<wxImage> OverlayImage(wxImage * background, wxImage * foreground,
|
|
wxImage * mask, int xoff, int yoff);
|
|
|
|
|
|
// JKC: will probably change name from 'teBmps' to 'tIndexBmp';
|
|
typedef int teBmps; /// The index of a bitmap resource in Theme Resources.
|
|
|
|
// Same idea, but this time the mask is an alpha channel in
|
|
// the foreground bitmap, and it's all retrieved from Themes.
|
|
std::unique_ptr<wxImage> OverlayImage(teBmps eBack, teBmps eForeground,
|
|
int xoff, int yoff);
|
|
|
|
|
|
// Creates an image with a solid background color
|
|
std::unique_ptr<wxImage> CreateBackground(int width, int height, wxColour colour);
|
|
|
|
// Creates an image with the Mac OS X Aqua stripes, to be used
|
|
// as a background
|
|
std::unique_ptr<wxImage> CreateAquaBackground(int width, int height, int offset);
|
|
|
|
// Uses color on all OS except Mac, uses Aqua
|
|
std::unique_ptr<wxImage> CreateSysBackground(int width, int height, int offset,
|
|
wxColour colour);
|
|
|
|
// Pastes one image into another at specified location.
|
|
void PasteSubImage( wxImage * pDest, wxImage * pSrc, int x, int y );
|
|
|
|
// Gets a rectangle from within anothe rimage, INCLUDING the alpha channel
|
|
wxImage GetSubImageWithAlpha( const wxImage & Src, const wxRect &rect );
|