示例#1
0
 internal ImageAttributesPlus(GpImageAttributes imageAttr, GpStatus status)
 {
     SetNativeImageAttr(imageAttr);
     lastResult = status;
 }
示例#2
0
GdipDrawImagePointsRect(GpGraphics graphics, GpImage image,
                        GpPointF[] points, int count, float srcx,
                        float srcy, float srcwidth, float srcheight,
                        Unit srcUnit,
                        GpImageAttributes imageAttributes,
                        IntPtr callback, IntPtr callbackData);
示例#3
0
文件: Brushes.cs 项目: misiek/foo
   public static extern GpStatus GdipCreateTextureIAI(GpImage image,
 GpImageAttributes imageAttributes,
 int x, int y, int width, int height,
 out GpTexture texture);
示例#4
0
GdipCreateTextureIAI(GpImage image,
      GpImageAttributes imageAttributes,
      int x, int y, int width, int height,
      out GpTexture texture);
示例#5
0
GdipSetImageAttributesColorKeys(GpImageAttributes imageattr,
                                ColorAdjustType type,
                                bool enableFlag,
                                int colorLow,
                                int colorHigh);
示例#6
0
文件: Images.cs 项目: misiek/foo
 public static extern GpStatus GdipDrawImageRectRect(GpGraphics graphics, GpImage image, float dstx,
               float dsty, float dstwidth, float dstheight,
               float srcx, float srcy, float srcwidth, float srcheight,
               Unit srcUnit,
               GpImageAttributes imageAttributes,
               IntPtr callback, IntPtr callbackData);
示例#7
0
 public static extern GpStatus GdipSetImageAttributesGamma(GpImageAttributes imageattr,
                     ColorAdjustType type,
                     bool enableFlag,
                     float gamma);
示例#8
0
GdipSetImageAttributesGamma(GpImageAttributes imageattr,
                            ColorAdjustType type,
                            bool enableFlag,
                            float gamma);
示例#9
0
 public static extern GpStatus GdipResetImageAttributes(GpImageAttributes imageattr,
                  ColorAdjustType type);
示例#10
0
 public static extern GpStatus GdipSetImageAttributesColorKeys(GpImageAttributes imageattr,
                         ColorAdjustType type,
                         bool enableFlag,
                         int colorLow,
                         int colorHigh);
示例#11
0
 public static extern GpStatus GdipDisposeImageAttributes(GpImageAttributes imageattr);
示例#12
0
 public static extern GpStatus GdipCreateImageAttributes(out GpImageAttributes imageattr);
示例#13
0
 public static extern GpStatus GdipCloneImageAttributes(GpImageAttributes imageattr,
                  out GpImageAttributes cloneImageattr);
示例#14
0
GdipResetImageAttributes(GpImageAttributes imageattr,
                         ColorAdjustType type);
示例#15
0
 public static extern GpStatus GdipSetImageAttributesNoOp(GpImageAttributes imageattr,
                    ColorAdjustType type,
                    bool enableFlag);
示例#16
0
GdipSetImageAttributesThreshold(GpImageAttributes imageattr,
                                ColorAdjustType type,
                                bool enableFlag,
                                float threshold);
示例#17
0
 public static extern GpStatus GdipSetImageAttributesThreshold(GpImageAttributes imageattr,
                         ColorAdjustType type,
                         bool enableFlag,
                         float threshold);
示例#18
0
GdipSetImageAttributesNoOp(GpImageAttributes imageattr,
                           ColorAdjustType type,
                           bool enableFlag);
示例#19
0
 public static extern GpStatus GdipSetImageAttributesToIdentity(GpImageAttributes imageattr,
                          ColorAdjustType type);
示例#20
0
文件: Images.cs 项目: misiek/foo
        public static extern GpStatus 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);
示例#21
0
GdipCreateImageAttributes(out GpImageAttributes imageattr);
示例#22
0
文件: Brushes.cs 项目: misiek/foo
    public static extern GpStatus GdipCreateTextureIA(GpImage image,
 GpImageAttributes imageAttributes,
 float x, float y, float width, float height,
 out GpTexture texture);
示例#23
0
GdipCloneImageAttributes(GpImageAttributes imageattr,
                         out GpImageAttributes cloneImageattr);
示例#24
0
GdipCreateTextureIA(GpImage image,
     GpImageAttributes imageAttributes,
     float x, float y, float width, float height,
     out GpTexture texture);
示例#25
0
GdipDisposeImageAttributes(GpImageAttributes imageattr);
示例#26
0
 public ImageAttributesPlus()
 {
     nativeImageAttr = new GpImageAttributes();
     lastResult = NativeMethods.GdipCreateImageAttributes(out nativeImageAttr);
 }
示例#27
0
GdipSetImageAttributesToIdentity(GpImageAttributes imageattr,
                                 ColorAdjustType type);
示例#28
0
 internal void SetNativeImageAttr(GpImageAttributes nativeImageAttr)
 {
     this.nativeImageAttr = nativeImageAttr;
 }
示例#29
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);