예제 #1
0
 public cImage Apply(cImage source, int width, int height, float radius, bool useCenteredGrid) {
   Contract.Requires(source != null);
   return (source.ApplyScaler(this._type, width, height, radius, useCenteredGrid));
 }
예제 #2
0
 public override cImage Apply(cImage source) {
   Contract.Requires(source != null);
   return (source.ApplyScaler(this._type, this._allowAlphaBlending));
 }
예제 #3
0
 public override cImage Apply(cImage source) {
   Contract.Requires(source != null);
   return (source.ApplyScaler(this._type));
 }
예제 #4
0
 public cImage Apply(cImage source, int width, int height) {
   Contract.Requires(source != null);
   return (source.ApplyScaler(this._type, width, height));
 }