mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
19 lines
386 B
Objective-C
19 lines
386 B
Objective-C
//
|
|
// EmbeddedFontEncoder.h
|
|
// macSVG
|
|
//
|
|
// Created by Douglas Ward on 1/3/12.
|
|
// Copyright © 2016 ArkPhone LLC. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface EmbeddedFontEncoder : NSObject
|
|
{
|
|
}
|
|
|
|
- (IBAction)testFontEmbedder:(id)sender;
|
|
- (NSString *)encodeFontWithURL:(NSURL *)fontURL fontFamily:(NSString *)fontFamily fontType:(NSString *)fontType;
|
|
|
|
@end
|