27 lines
509 B
Objective-C
27 lines
509 B
Objective-C
//
|
|
// IJSVGImage.h
|
|
// IJSVGExample
|
|
//
|
|
// Created by Curtis Hard on 28/05/2016.
|
|
// Copyright © 2016 Curtis Hard. All rights reserved.
|
|
//
|
|
|
|
#import "IJSVGNode.h"
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class IJSVGPath;
|
|
|
|
@interface IJSVGImage : IJSVGNode {
|
|
|
|
NSImage* image;
|
|
CGImageRef CGImage;
|
|
IJSVGPath* imagePath;
|
|
}
|
|
|
|
- (CGImageRef)CGImage;
|
|
- (void)drawInContextRef:(CGContextRef)context
|
|
path:(IJSVGPath*)path;
|
|
- (void)loadFromBase64EncodedString:(NSString*)encodedString;
|
|
|
|
@end
|