JLStickerTextView alternatives and similar libraries
Based on the "Image" category.
Alternatively, view JLStickerTextView alternatives based on common mentions on social networks and blogs.
-
GPUImage2
GPUImage 2 is a BSD-licensed Swift framework for GPU-accelerated video and image processing. -
TOCropViewController
A view controller for iOS that allows users to crop portions of UIImage objects -
IDMPhotoBrowser
Photo Browser / Viewer inspired by Facebook's and Tweetbot's with ARC support, swipe-to-dismiss, image progress and more -
SKPhotoBrowser
Simple PhotoBrowser/Viewer inspired by facebook, twitter photo browsers written by swift -
GPUImage3
GPUImage 3 is a BSD-licensed Swift framework for GPU-accelerated video and image processing using Metal. -
AspectFillFaceAware
DISCONTINUED. An extension that gives UIImageView the ability to focus on faces within an image. -
RSKImageCropper
An image / photo crop view controller for iOS like in the Contacts app with support for landscape orientation. -
EBPhotoPages
A photo gallery for iOS with a modern feature set. Similar features as the Facebook photo browser. -
Twitter Image Pipline
Twitter Image Pipeline is a robust and performant image loading and caching framework for iOS clients -
ImagePickerSheetController
ImagePickerSheetController replicates the custom photo action sheet in iMessage. -
YUCIHighPassSkinSmoothing
An implementation of High Pass Skin Smoothing using Apple's Core Image Framework -
CTPanoramaView
A library that displays spherical or cylindrical panoramas with touch or motion based controls. -
AXPhotoViewer
An iOS/tvOS photo gallery viewer, useful for viewing a large (or small!) number of photos. -
OnlyPictures
A simple and flexible way to add source of overlapping circular pictures, currently supports horizontal overlapping or distant pictures with great layout flexibility. -
ComplimentaryGradientView
Create complementary gradients generated from dominant and prominent colors in supplied image. Inspired by Grade.js -
Harbeth
🎨 GPU accelerated image / video and camera filter library based on Metal. Support macOS & iOS. 图像、视频、相机滤镜框架
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of JLStickerTextView or a related project?
README
About
StickerTextView is an subclass of UIImageView. You can add multiple text to it, edit, rotate, resize the text as you want with one finger, then render the text on Image.
Features
- You can add multiple Text to StickerTextView at the same time
- Multiple line Text support
- Rotate, resize the text with one finger
- Set the Color, alpha, font, alignment, TextShadow, lineSpacing...... of the text
- StickerTextView also handle the process of rendering text on Image
- Written in Swift
Installation
Manually
Just drag the Source files into your project(To get the latest version, please install manually)
CocoaPods
To integrate StickerTextView into your Xcode project using CocoaPods, specify it in your Podfile and run pod install
:
use_frameworks!
pod "JLStickerTextView", "~> 0.1.1"
To get the latest version:
use_frameworks!
pod "JLStickerTextView", :git =>
"https://github.com/Textcat/JLStickerTextView.git"
Usage
Start
First, import JLStickerTextView
, then subclass the UIImageView, which you want to add text on, to JLStickerImageView, like this:
import JLStickerTextView
class ViewController: UIViewController {
@IBOutlet var stickerView: JLStickerImageView!
}
If you use Storyboard, you also need connect the UIImageView to JLStikcerImageView
Class in Identity Inspector.
Add new Label
It is quite easy to add new label to current StickerImageView:
stickerView.addLabel()
Set the Label
You can set the color, font , alignment, alpha.... of the label.(check all avaliable text attributes)
stickerView.textColor = UIColor.whiteColor()
Note: when you set the properties, you make change to the current selected TextLabel.
Render Text on Image
When you feel good, you are going to render the Text on Image and save the image:
let image = stickerView.renderTextOnView(stickerView)
UIImageWriteToSavedPhotosAlbum(image!, nil, nil, nil)
Customize the StickerTextView appearance
Customize stickerTextView appearance is very strightforward:
//Set the image of close Button
stickerView.currentlyEditingLabel.closeView!.image = UIImage(named: "cancel")
//Set the image of rotate Button
stickerView.currentlyEditingLabel.rotateView?.image = UIImage(named: "rotate")
//Set the border color of textLabel
stickerView.currentlyEditingLabel.border?.strokeColor = UIColor.redColor().CGColor
Note: closeView
and rotateView
are both UIimageView, while border
is CAShapeLayer
Scale stickerView proportionally
This function is not complete yet, I just make it to fit my requirement.
stickerView.limitImageViewToSuperView()
When you render the text on UIImageView whose content mode is AspectFit, it is possible you will get some unwanted border. This function will scale UIImageView to fit the image.
Avaliable Text Attributes Reference(Let's add more 😉)
Key | JLStickerImageView Property |
value Type |
---|---|---|
Font |
.fontName |
String |
Alignment |
.textAlignment |
NSTextAlignment |
Alpha |
.textAlpha |
CGFloat |
textColor |
.textColor |
UIColor |
lineSpacing |
.lineSpacing |
CGFloat |
TextShadow |
.textShadowOffset |
CGSize |
.textShadowColor |
UIColor |
|
.textShadowBlur |
CGFloat |
Contributon
Any suggestion, request, pull are welcome. If you encounter any problem, feel free to create an issue.
If you want to add more text attributes:
- Please fork this project
- Define the attribute you want in
JLAttributedTextView.swift
- implement user interface in
JLStickerImageVIew.swift
- Write appropriate docs and comments in the README.md
- Submit a pull request
Plan
Here are some ideas:
- [ ] More options for text(eg: lineSpacing)
- [x] Interface to customize the appearance of StickerLabelView(close Button, rotate button, border,etc)
- [ ] More general solution for Scaling stickerView proportionally
- [ ] Support placeholder
Reference
Based on
Also inspired by