Exemple #1
0
 /// <remarks>
 ///  Inverts an image. If the machine supports MMX this can do two pixels
 ///  at a time, otherwise it's the same as QImage.InvertPixels().
 /// <param> name="img" The image to invert.
 /// </param><param> name="mode" If to invert the alpha channel or not.
 /// </param></remarks>        <author> Daniel M. Duley (mosfet)
 ///      </author>
 ///         <short>    Inverts an image.</short>
 public static bool Invert(QImage img, QImage.InvertMode mode)
 {
     return((bool)staticInterceptor.Invoke("invert#$", "invert(QImage&, QImage::InvertMode)", typeof(bool), typeof(QImage), img, typeof(QImage.InvertMode), mode));
 }
Exemple #2
0
 public void InvertPixels(QImage.InvertMode arg1)
 {
     interceptor.Invoke("invertPixels$", "invertPixels(QImage::InvertMode)", typeof(void), typeof(QImage.InvertMode), arg1);
 }