You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
0 B

//
// BitmapTool.h
// JL_BLEKit
//
// Created by 杰理科技 on 2021/12/29.
// Copyright © 2021 www.zh-jieli.com. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface BitmapTool : NSObject
/*
*
* image : UIimage图片
*
* NSData : B_G_R_A位图数据
*/
+(NSData*)convert_B_G_R_A_BytesFromImage:(UIImage*)image;
/*
*
* image : UIimage图片
*
* NSData : R_G_B_A位图数据
*/
+(NSData*)convert_R_G_B_A_BytesFromImage:(UIImage*)image;
/*
*
* image : UIimage图片
* newSize :
*
* NSData :
*/
+(NSData *)resizeImage:(UIImage*)image andResizeTo:(CGSize)newSize;
@end
NS_ASSUME_NONNULL_END