Skip to content

Darshanptl7500/IconKit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IconKit

Welcome to IconKit.

IconKit is a dynamic icon generation library.You can create dynamic icon by code

Example:

Search Icon

###Fill Icon Search *search =[[Search alloc] initWithSize:CGSizeMake(200, 200)];

search.fillColor =[UIColor redColor];

UIImage *image =search.image;

green searchred search

Stroke Icon

Search *search =[[Search alloc] initWithSize:CGSizeMake(75, 75)];

search.onlyStroke =YES;

search.strokeColor = [UIColor blueColor];

search.strokeWidth = 1.0;

UIImage *image =search.image;

blue strokegreen stroke

###Next Icon ###StrokeIcon With Round

Next *next =[[Next alloc] initWithSize:CGSizeMake(200, 200)];

next.strokeColor = [UIColor blackColor];

next.strokeWidth = 2.0;

next.hasRound = YES;

next.onlyStroke = YES;

UIImage *nextImage = next.image;

blue strokegreen stroke

###FillIcon With Round

Next *next =[[Next alloc] initWithSize:CGSizeMake(200, 200)];

next.fillColor = [UIColor grayColor];

next.strokeColor =[UIColor blackColor];

next.strokeWidth = 2.0;

next.hasRound = YES;

next.onlyStroke = NO;

blue strokegreen stroke

###Previous Icon

###StrokeIcon With Round

Previous *prev =[[Previous alloc] initWithSize:CGSizeMake(200, 200)];

prev.strokeColor = [UIColor blackColor];

prev.strokeWidth = 2.0;

prev.hasRound = YES;

prev.onlyStroke = YES;

UIImage *prevImage = prev.image;

Imgur Imgur

###FillIcon With Round

Previous *prev =[[Previous alloc] initWithSize:CGSizeMake(200, 200)];

prev.fillColor = [UIColor grayColor];

prev.strokeColor =[UIColor blackColor];

prev.strokeWidth = 2.0;

prev.hasRound = YES;

prev.onlyStroke = NO;

UIImage *prevImage = prev.image;

Imgur Imgur

About

IconKit is a dynamic icon generation library.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published