IGeneralCaptchaService.cs 395 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace YBEE.EQM.Application
  7. {
  8. public interface IGeneralCaptchaService
  9. {
  10. GeneralCaptchaOutput CheckCode(GeneralCaptchaInput input);
  11. GeneralCaptchaOutput CreateCaptchaImage(int length = 4, int width = 110, int height = 36, int fontSize = 22);
  12. }
  13. }