20 lines
435 B
Objective-C
20 lines
435 B
Objective-C
//
|
|
// IJSVGWriter.h
|
|
// IJSVGExample
|
|
//
|
|
// Created by Curtis Hard on 21/05/2015.
|
|
// Copyright (c) 2015 Curtis Hard. All rights reserved.
|
|
//
|
|
|
|
#import "IJSVGPath.h"
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface IJSVGWriter : NSObject {
|
|
}
|
|
|
|
+ (NSString*)SVGDocumentStringForSVGGlyph:(IJSVGPath*)node;
|
|
+ (NSString*)SVGDocumentStringForBezierPath:(NSBezierPath*)path;
|
|
+ (NSXMLDocument*)SVGDocumentForBezierPath:(NSBezierPath*)path;
|
|
|
|
@end
|