ceeace / UIImage-Vector

UIImage category for dealing with vector formats like PDF and icon fonts.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UIImage-Vector

UIImage category for dealing with vector formats like PDF and icon fonts.

Usage

Use an icon font PDF:

UIFont *font = [UIFont fontWithName:@"MyIconFont" size:28.0f];
UIImage *gear = [UIImage iconWithFont:font named:@"g"
                        withTintColor:[UIColor whiteColor] clipToBounds:NO forSize:28.0f];

Use a PDF:

UIImage *gear = [UIImage imageWithPDFNamed:@"gear"
                             withTintColor:[UIColor whiteColor] forHeight:28.0f];

Installation

Simply add the files in UIImage-Vector to your project and link CoreText.framework.

About

UIImage category for dealing with vector formats like PDF and icon fonts.

License:MIT License