Files
IJSVG/source/IJSVGWriter.h
Curtis Hard a86e347b4c Added support for converting fonts to SVG's
Also added support for reading glyphs from icon fonts
2015-05-23 15:13:24 +01:00

21 lines
446 B
Objective-C

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