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)); }
public override cImage Apply(cImage source) { Contract.Requires(source != null); return (source.ApplyScaler(this._type, this._allowAlphaBlending)); }
public override cImage Apply(cImage source) { Contract.Requires(source != null); return (source.ApplyScaler(this._type)); }
public cImage Apply(cImage source, int width, int height) { Contract.Requires(source != null); return (source.ApplyScaler(this._type, width, height)); }