Qt.QImage Class

public class QImage: QtSupport, System.IDisposable

Base Types

System.Object
  QtSupport
    QImage

This type implements System.IDisposable.

See Also

Qt Namespace

Members

QImage Constructors

QImage() Constructor
QImage(int, int, int, int, Endian) Constructor
QImage(Qt.QSize, int, int, Endian) Constructor
QImage(System.String, System.String) Constructor
QImage(System.String[]) Constructor
QImage(byte[]) Constructor
QImage(System.String, int, int, int, int, int, Endian) Constructor
QImage(System.String, int, int, int, int, int, int, Endian) Constructor
QImage(Qt.QImage) Constructor
QImage(int, int, int) Constructor
QImage(int, int, int, int) Constructor
QImage(Qt.QSize, int) Constructor
QImage(Qt.QSize, int, int) Constructor
QImage(System.String) Constructor
QImage(void *) Constructor

QImage Methods

QImage.AllGray Method
QImage.BitOrder Method
QImage.Bits Method
QImage.BytesPerLine Method
QImage.Color Method
QImage.ColorTable Method
QImage.ConvertBitOrder Method
QImage.ConvertDepth(int) Method
QImage.ConvertDepth(int, int) Method
QImage.ConvertDepthWithPalette(int, int, int, int) Method
QImage.ConvertDepthWithPalette(int, int, int) Method
QImage.Copy() Method
QImage.Copy(int, int, int, int, int) Method
QImage.Copy(Qt.QRect) Method
QImage.Copy(int, int, int, int) Method
QImage.Create(int, int, int, int, Endian) Method
QImage.Create(Qt.QSize, int, int, Endian) Method
QImage.Create(int, int, int) Method
QImage.Create(int, int, int, int) Method
QImage.Create(Qt.QSize, int) Method
QImage.Create(Qt.QSize, int, int) Method
QImage.CreateAlphaMask(int) Method
QImage.CreateAlphaMask() Method
QImage.CreateHeuristicMask(bool) Method
QImage.CreateHeuristicMask() Method
QImage.Depth Method
QImage.Detach Method
QImage.DotsPerMeterX Method
QImage.DotsPerMeterY Method
QImage.Fill Method
QImage.Finalize Method
QImage.GraphicsContext Method
QImage.HasAlphaBuffer Method
QImage.Height Method
QImage.ImageFormat Method
QImage.InputFormatList Method
QImage.InputFormats Method
QImage.InvertPixels(bool) Method
QImage.InvertPixels() Method
QImage.IsGrayscale Method
QImage.IsNull Method
QImage.JumpTable Method
QImage.Load(System.String, System.String) Method
QImage.Load(System.String) Method
QImage.LoadFromData(System.String, uint, System.String) Method
QImage.LoadFromData(byte[], System.String) Method
QImage.LoadFromData(System.String, uint) Method
QImage.LoadFromData(byte[]) Method
QImage.Mirror() Method
QImage.Mirror(bool, bool) Method
QImage.NumBytes Method
QImage.NumColors Method
QImage.Offset Method
QImage.OutputFormatList Method
QImage.OutputFormats Method
QImage.Pixel Method
QImage.PixelIndex Method
QImage.Rect Method
QImage.Reset Method
QImage.Save(System.String, System.String, int) Method
QImage.Save(System.String, System.String) Method
QImage.Scale(int, int, ScaleMode) Method
QImage.Scale(Qt.QSize, ScaleMode) Method
QImage.Scale(int, int) Method
QImage.Scale(Qt.QSize) Method
QImage.ScaleHeight Method
QImage.ScaleWidth Method
QImage.ScanLine Method
QImage.SetAlphaBuffer Method
QImage.SetColor Method
QImage.SetDotsPerMeterX Method
QImage.SetDotsPerMeterY Method
QImage.SetNumColors Method
QImage.SetOffset Method
QImage.SetPixel Method
QImage.SetText Method
QImage.Size Method
QImage.SmoothScale(int, int, ScaleMode) Method
QImage.SmoothScale(Qt.QSize, ScaleMode) Method
QImage.SmoothScale(int, int) Method
QImage.SmoothScale(Qt.QSize) Method
QImage.SwapRGB Method
QImage.SystemBitOrder Method
QImage.SystemByteOrder Method
QImage.Text(System.String, System.String) Method
QImage.Text(Qt.QImageTextKeyLang) Method
QImage.Text(System.String) Method
QImage.TextKeys Method
QImage.TextLanguages Method
QImage.Valid Method
QImage.Width Method
QImage.XForm Method


QImage() Constructor

public void QImage();

See Also

Qt.QImage Class, Qt Namespace

QImage(int, int, int, int, Endian) Constructor

public void QImage(int width, int height, int depth, int numColors, Endian bitOrder);

See Also

Qt.QImage Class, Qt Namespace

QImage(Qt.QSize, int, int, Endian) Constructor

public void QImage(Qt.QSize arg1, int depth, int numColors, Endian bitOrder);

See Also

Qt.QImage Class, Qt Namespace

QImage(System.String, System.String) Constructor

public void QImage(System.String fileName, System.String format);

See Also

Qt.QImage Class, Qt Namespace

QImage(System.String[]) Constructor

public void QImage(System.String[] xpm);

See Also

Qt.QImage Class, Qt Namespace

QImage(byte[]) Constructor

public void QImage(byte[] data);

See Also

Qt.QImage Class, Qt Namespace

QImage(System.String, int, int, int, int, int, Endian) Constructor

public void QImage(System.String data, int w, int h, int depth, int colortable, int numColors, Endian bitOrder);

See Also

Qt.QImage Class, Qt Namespace

QImage(System.String, int, int, int, int, int, int, Endian) Constructor

public void QImage(System.String data, int w, int h, int depth, int pbl, int colortable, int numColors, Endian bitOrder);

See Also

Qt.QImage Class, Qt Namespace

QImage(Qt.QImage) Constructor

public void QImage(Qt.QImage arg1);

See Also

Qt.QImage Class, Qt Namespace

QImage(int, int, int) Constructor

public void QImage(int width, int height, int depth);

See Also

Qt.QImage Class, Qt Namespace

QImage(int, int, int, int) Constructor

public void QImage(int width, int height, int depth, int numColors);

See Also

Qt.QImage Class, Qt Namespace

QImage(Qt.QSize, int) Constructor

public void QImage(Qt.QSize arg1, int depth);

See Also

Qt.QImage Class, Qt Namespace

QImage(Qt.QSize, int, int) Constructor

public void QImage(Qt.QSize arg1, int depth, int numColors);

See Also

Qt.QImage Class, Qt Namespace

QImage(System.String) Constructor

public void QImage(System.String fileName);

See Also

Qt.QImage Class, Qt Namespace

QImage(void *) Constructor

public void QImage(void * ptr);

See Also

Qt.QImage Class, Qt Namespace

QImage.AllGray Method

public bool AllGray();

See Also

Qt.QImage Class, Qt Namespace

QImage.BitOrder Method

public Endian BitOrder();

See Also

Qt.QImage Class, Qt Namespace

QImage.Bits Method

public System.String Bits();

See Also

Qt.QImage Class, Qt Namespace

QImage.BytesPerLine Method

public int BytesPerLine();

See Also

Qt.QImage Class, Qt Namespace

QImage.Color Method

public int Color(int i);

See Also

Qt.QImage Class, Qt Namespace

QImage.ColorTable Method

public int ColorTable();

See Also

Qt.QImage Class, Qt Namespace

QImage.ConvertBitOrder Method

public Qt.QImage ConvertBitOrder(Endian arg1);

See Also

Qt.QImage Class, Qt Namespace

QImage.ConvertDepth(int) Method

public Qt.QImage ConvertDepth(int arg1);

See Also

Qt.QImage Class, Qt Namespace

QImage.ConvertDepth(int, int) Method

public Qt.QImage ConvertDepth(int arg1, int conversion_flags);

See Also

Qt.QImage Class, Qt Namespace

QImage.ConvertDepthWithPalette(int, int, int, int) Method

public Qt.QImage ConvertDepthWithPalette(int arg1, int p, int pc, int cf);

See Also

Qt.QImage Class, Qt Namespace

QImage.ConvertDepthWithPalette(int, int, int) Method

public Qt.QImage ConvertDepthWithPalette(int arg1, int p, int pc);

See Also

Qt.QImage Class, Qt Namespace

QImage.Copy() Method

public Qt.QImage Copy();

See Also

Qt.QImage Class, Qt Namespace

QImage.Copy(int, int, int, int, int) Method

public Qt.QImage Copy(int x, int y, int w, int h, int conversion_flags);

See Also

Qt.QImage Class, Qt Namespace

QImage.Copy(Qt.QRect) Method

public Qt.QImage Copy(Qt.QRect arg1);

See Also

Qt.QImage Class, Qt Namespace

QImage.Copy(int, int, int, int) Method

public Qt.QImage Copy(int x, int y, int w, int h);

See Also

Qt.QImage Class, Qt Namespace

QImage.Create(int, int, int, int, Endian) Method

public bool Create(int width, int height, int depth, int numColors, Endian bitOrder);

See Also

Qt.QImage Class, Qt Namespace

QImage.Create(Qt.QSize, int, int, Endian) Method

public bool Create(Qt.QSize arg1, int depth, int numColors, Endian bitOrder);

See Also

Qt.QImage Class, Qt Namespace

QImage.Create(int, int, int) Method

public bool Create(int width, int height, int depth);

See Also

Qt.QImage Class, Qt Namespace

QImage.Create(int, int, int, int) Method

public bool Create(int width, int height, int depth, int numColors);

See Also

Qt.QImage Class, Qt Namespace

QImage.Create(Qt.QSize, int) Method

public bool Create(Qt.QSize arg1, int depth);

See Also

Qt.QImage Class, Qt Namespace

QImage.Create(Qt.QSize, int, int) Method

public bool Create(Qt.QSize arg1, int depth, int numColors);

See Also

Qt.QImage Class, Qt Namespace

QImage.CreateAlphaMask(int) Method

public Qt.QImage CreateAlphaMask(int conversion_flags);

See Also

Qt.QImage Class, Qt Namespace

QImage.CreateAlphaMask() Method

public Qt.QImage CreateAlphaMask();

See Also

Qt.QImage Class, Qt Namespace

QImage.CreateHeuristicMask(bool) Method

public Qt.QImage CreateHeuristicMask(bool clipTight);

See Also

Qt.QImage Class, Qt Namespace

QImage.CreateHeuristicMask() Method

public Qt.QImage CreateHeuristicMask();

See Also

Qt.QImage Class, Qt Namespace

QImage.Depth Method

public int Depth();

See Also

Qt.QImage Class, Qt Namespace

QImage.Detach Method

public void Detach();

See Also

Qt.QImage Class, Qt Namespace

QImage.DotsPerMeterX Method

public int DotsPerMeterX();

See Also

Qt.QImage Class, Qt Namespace

QImage.DotsPerMeterY Method

public int DotsPerMeterY();

See Also

Qt.QImage Class, Qt Namespace

QImage.Fill Method

public void Fill(uint pixel);

See Also

Qt.QImage Class, Qt Namespace

QImage.Finalize Method

protected override void Finalize();

See Also

Qt.QImage Class, Qt Namespace

QImage.GraphicsContext Method

public void * GraphicsContext();

See Also

Qt.QImage Class, Qt Namespace

QImage.HasAlphaBuffer Method

public bool HasAlphaBuffer();

See Also

Qt.QImage Class, Qt Namespace

QImage.Height Method

public int Height();

See Also

Qt.QImage Class, Qt Namespace

QImage.ImageFormat Method

public static System.String ImageFormat(System.String fileName);

See Also

Qt.QImage Class, Qt Namespace

QImage.InputFormatList Method

public static Qt.QStringList InputFormatList();

See Also

Qt.QImage Class, Qt Namespace

QImage.InputFormats Method

public static Qt.QStrList InputFormats();

See Also

Qt.QImage Class, Qt Namespace

QImage.InvertPixels(bool) Method

public void InvertPixels(bool invertAlpha);

See Also

Qt.QImage Class, Qt Namespace

QImage.InvertPixels() Method

public void InvertPixels();

See Also

Qt.QImage Class, Qt Namespace

QImage.IsGrayscale Method

public bool IsGrayscale();

See Also

Qt.QImage Class, Qt Namespace

QImage.IsNull Method

public bool IsNull();

See Also

Qt.QImage Class, Qt Namespace

QImage.JumpTable Method

public System.String[] JumpTable();

See Also

Qt.QImage Class, Qt Namespace

QImage.Load(System.String, System.String) Method

public bool Load(System.String fileName, System.String format);

See Also

Qt.QImage Class, Qt Namespace

QImage.Load(System.String) Method

public bool Load(System.String fileName);

See Also

Qt.QImage Class, Qt Namespace

QImage.LoadFromData(System.String, uint, System.String) Method

public bool LoadFromData(System.String buf, uint len, System.String format);

See Also

Qt.QImage Class, Qt Namespace

QImage.LoadFromData(byte[], System.String) Method

public bool LoadFromData(byte[] data, System.String format);

See Also

Qt.QImage Class, Qt Namespace

QImage.LoadFromData(System.String, uint) Method

public bool LoadFromData(System.String buf, uint len);

See Also

Qt.QImage Class, Qt Namespace

QImage.LoadFromData(byte[]) Method

public bool LoadFromData(byte[] data);

See Also

Qt.QImage Class, Qt Namespace

QImage.Mirror() Method

public Qt.QImage Mirror();

See Also

Qt.QImage Class, Qt Namespace

QImage.Mirror(bool, bool) Method

public Qt.QImage Mirror(bool horizontally, bool vertically);

See Also

Qt.QImage Class, Qt Namespace

QImage.NumBytes Method

public int NumBytes();

See Also

Qt.QImage Class, Qt Namespace

QImage.NumColors Method

public int NumColors();

See Also

Qt.QImage Class, Qt Namespace

QImage.Offset Method

public Qt.QPoint Offset();

See Also

Qt.QImage Class, Qt Namespace

QImage.OutputFormatList Method

public static Qt.QStringList OutputFormatList();

See Also

Qt.QImage Class, Qt Namespace

QImage.OutputFormats Method

public static Qt.QStrList OutputFormats();

See Also

Qt.QImage Class, Qt Namespace

QImage.Pixel Method

public int Pixel(int x, int y);

See Also

Qt.QImage Class, Qt Namespace

QImage.PixelIndex Method

public int PixelIndex(int x, int y);

See Also

Qt.QImage Class, Qt Namespace

QImage.Rect Method

public Qt.QRect Rect();

See Also

Qt.QImage Class, Qt Namespace

QImage.Reset Method

public void Reset();

See Also

Qt.QImage Class, Qt Namespace

QImage.Save(System.String, System.String, int) Method

public bool Save(System.String fileName, System.String format, int quality);

See Also

Qt.QImage Class, Qt Namespace

QImage.Save(System.String, System.String) Method

public bool Save(System.String fileName, System.String format);

See Also

Qt.QImage Class, Qt Namespace

QImage.Scale(int, int, ScaleMode) Method

public Qt.QImage Scale(int w, int h, ScaleMode mode);

See Also

Qt.QImage Class, Qt Namespace

QImage.Scale(Qt.QSize, ScaleMode) Method

public Qt.QImage Scale(Qt.QSize s, ScaleMode mode);

See Also

Qt.QImage Class, Qt Namespace

QImage.Scale(int, int) Method

public Qt.QImage Scale(int w, int h);

See Also

Qt.QImage Class, Qt Namespace

QImage.Scale(Qt.QSize) Method

public Qt.QImage Scale(Qt.QSize s);

See Also

Qt.QImage Class, Qt Namespace

QImage.ScaleHeight Method

public Qt.QImage ScaleHeight(int h);

See Also

Qt.QImage Class, Qt Namespace

QImage.ScaleWidth Method

public Qt.QImage ScaleWidth(int w);

See Also

Qt.QImage Class, Qt Namespace

QImage.ScanLine Method

public System.String ScanLine(int arg1);

See Also

Qt.QImage Class, Qt Namespace

QImage.SetAlphaBuffer Method

public void SetAlphaBuffer(bool arg1);

See Also

Qt.QImage Class, Qt Namespace

QImage.SetColor Method

public void SetColor(int i, int c);

See Also

Qt.QImage Class, Qt Namespace

QImage.SetDotsPerMeterX Method

public void SetDotsPerMeterX(int arg1);

See Also

Qt.QImage Class, Qt Namespace

QImage.SetDotsPerMeterY Method

public void SetDotsPerMeterY(int arg1);

See Also

Qt.QImage Class, Qt Namespace

QImage.SetNumColors Method

public void SetNumColors(int arg1);

See Also

Qt.QImage Class, Qt Namespace

QImage.SetOffset Method

public void SetOffset(Qt.QPoint arg1);

See Also

Qt.QImage Class, Qt Namespace

QImage.SetPixel Method

public void SetPixel(int x, int y, uint index_or_rgb);

See Also

Qt.QImage Class, Qt Namespace

QImage.SetText Method

public void SetText(System.String key, System.String lang, System.String arg1);

See Also

Qt.QImage Class, Qt Namespace

QImage.Size Method

public Qt.QSize Size();

See Also

Qt.QImage Class, Qt Namespace

QImage.SmoothScale(int, int, ScaleMode) Method

public Qt.QImage SmoothScale(int w, int h, ScaleMode mode);

See Also

Qt.QImage Class, Qt Namespace

QImage.SmoothScale(Qt.QSize, ScaleMode) Method

public Qt.QImage SmoothScale(Qt.QSize s, ScaleMode mode);

See Also

Qt.QImage Class, Qt Namespace

QImage.SmoothScale(int, int) Method

public Qt.QImage SmoothScale(int w, int h);

See Also

Qt.QImage Class, Qt Namespace

QImage.SmoothScale(Qt.QSize) Method

public Qt.QImage SmoothScale(Qt.QSize s);

See Also

Qt.QImage Class, Qt Namespace

QImage.SwapRGB Method

public Qt.QImage SwapRGB();

See Also

Qt.QImage Class, Qt Namespace

QImage.SystemBitOrder Method

public static Endian SystemBitOrder();

See Also

Qt.QImage Class, Qt Namespace

QImage.SystemByteOrder Method

public static Endian SystemByteOrder();

See Also

Qt.QImage Class, Qt Namespace

QImage.Text(System.String, System.String) Method

public System.String Text(System.String key, System.String lang);

See Also

Qt.QImage Class, Qt Namespace

QImage.Text(Qt.QImageTextKeyLang) Method

public System.String Text(Qt.QImageTextKeyLang arg1);

See Also

Qt.QImage Class, Qt Namespace

QImage.Text(System.String) Method

public System.String Text(System.String key);

See Also

Qt.QImage Class, Qt Namespace

QImage.TextKeys Method

public Qt.QStringList TextKeys();

See Also

Qt.QImage Class, Qt Namespace

QImage.TextLanguages Method

public Qt.QStringList TextLanguages();

See Also

Qt.QImage Class, Qt Namespace

QImage.Valid Method

public bool Valid(int x, int y);

See Also

Qt.QImage Class, Qt Namespace

QImage.Width Method

public int Width();

See Also

Qt.QImage Class, Qt Namespace

QImage.XForm Method

public Qt.QImage XForm(Qt.QWMatrix matrix);

See Also

Qt.QImage Class, Qt Namespace