Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819
  1. //
  2. // ImageUtils.h
  3. // RNBluetoothEscposPrinter
  4. //
  5. // Created by januslo on 2018/10/7.
  6. // Copyright © 2018年 Facebook. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface ImageUtils :NSObject
  11. + (UIImage*)imagePadLeft:(NSInteger) left withSource: (UIImage*)source;
  12. + (uint8_t *)imageToGreyImage:(UIImage *)image;
  13. + (UIImage *)imageWithImage:(UIImage *)image scaledToFillSize:(CGSize)size;
  14. + (NSData*)bitmapToArray:(UIImage*) bmp;
  15. + (NSData *)eachLinePixToCmd:(unsigned char *)src nWidth:(NSInteger) nWidth nHeight:(NSInteger) nHeight nMode:(NSInteger) nMode;
  16. +(unsigned char *)format_K_threshold:(unsigned char *) orgpixels
  17. width:(NSInteger) xsize height:(NSInteger) ysize;
  18. +(NSData *)pixToTscCmd:(uint8_t *)src width:(NSInteger) width;
  19. @end