NSImage+WebCache.h 412 B

1234567891011121314151617181920212223
  1. /*
  2. * This file is part of the SDWebImage package.
  3. * (c) Olivier Poitrey <rs@dailymotion.com>
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. */
  8. #import "SDWebImageCompat.h"
  9. #if SD_MAC
  10. #import <Cocoa/Cocoa.h>
  11. @interface NSImage (WebCache)
  12. - (CGImageRef)CGImage;
  13. - (NSArray<NSImage *> *)images;
  14. - (BOOL)isGIF;
  15. @end
  16. #endif