Beispiel #1
0
 GdipSetImageAttributesColorKeys(GpImageAttributes imageattr,
                                 ColorAdjustType type,
                                 bool enableFlag,
                                 int colorLow,
                                 int colorHigh);
Beispiel #2
0
 GdipSetImageAttributesGamma(GpImageAttributes imageattr,
                             ColorAdjustType type,
                             bool enableFlag,
                             float gamma);
Beispiel #3
0
 GdipSetImageAttributesNoOp(GpImageAttributes imageattr,
                            ColorAdjustType type,
                            bool enableFlag);
Beispiel #4
0
 GdipResetImageAttributes(GpImageAttributes imageattr,
                          ColorAdjustType type);
Beispiel #5
0
 GdipSetImageAttributesThreshold(GpImageAttributes imageattr,
                                 ColorAdjustType type,
                                 bool enableFlag,
                                 float threshold);
Beispiel #6
0
 GdipDisposeImageAttributes(GpImageAttributes imageattr);
Beispiel #7
0
 GdipSetImageAttributesToIdentity(GpImageAttributes imageattr,
                                  ColorAdjustType type);
Beispiel #8
0
 GdipCreateImageAttributes(out GpImageAttributes imageattr);
Beispiel #9
0
 GdipCloneImageAttributes(GpImageAttributes imageattr,
                          out GpImageAttributes cloneImageattr);
Beispiel #10
0
 internal void SetNativeImageAttr(GpImageAttributes nativeImageAttr)
 {
     this.nativeImageAttr = nativeImageAttr;
 }
Beispiel #11
0
 public ImageAttributesPlus()
 {
     nativeImageAttr = new GpImageAttributes();
     lastResult      = NativeMethods.GdipCreateImageAttributes(out nativeImageAttr);
 }
Beispiel #12
0
 internal ImageAttributesPlus(GpImageAttributes imageAttr, GpStatus status)
 {
     SetNativeImageAttr(imageAttr);
     lastResult = status;
 }
Beispiel #13
0
 GdipDrawImagePointsRectI(GpGraphics graphics, GpImage image,
                          GpPoint[] points, int count, int srcx,
                          int srcy, int srcwidth, int srcheight,
                          Unit srcUnit,
                          GpImageAttributes imageAttributes,
                          IntPtr callback, IntPtr callbackData);
Beispiel #14
0
 GdipDrawImageRectRectI(GpGraphics graphics, GpImage image, int dstx,
                        int dsty, int dstwidth, int dstheight,
                        int srcx, int srcy, int srcwidth, int srcheight,
                        Unit srcUnit,
                        GpImageAttributes imageAttributes,
                        IntPtr callback, IntPtr callbackData);
Beispiel #15
0
 GdipCreateTextureIAI(GpImage image,
                      GpImageAttributes imageAttributes,
                      int x, int y, int width, int height,
                      out GpTexture texture);
Beispiel #16
0
 GdipCreateTextureIA(GpImage image,
                     GpImageAttributes imageAttributes,
                     float x, float y, float width, float height,
                     out GpTexture texture);