Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/terwanerik/Retini
A super simple retina (2x, 3x) image converter.
https://github.com/terwanerik/Retini
image ios resizer retina
Last synced: 5 days ago
JSON representation
A super simple retina (2x, 3x) image converter.
- Host: GitHub
- URL: https://github.com/terwanerik/Retini
- Owner: terwanerik
- License: mit
- Created: 2015-09-28T14:13:39.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-05-09T11:53:58.000Z (over 3 years ago)
- Last Synced: 2024-12-01T13:36:19.928Z (11 days ago)
- Topics: image, ios, resizer, retina
- Language: Objective-C
- Homepage: http://terwanerik.github.io/Retini/
- Size: 34.3 MB
- Stars: 201
- Watchers: 13
- Forks: 30
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - Retini - A super simple retina (2x, 3x) image converter. (Tools / Web View)
- awesome-ios-star - Retini - A super simple retina (2x, 3x) image converter. (Tools / Web View)
README
![alt text](https://github.com/terwanerik/Retini/blob/master/Images/Icon%7E256.png "Retini")
# Retini
A super fast and simple retina (@2x, @3x) image converter.## How to use?
You can download the [prebuilt application from the releases](https://github.com/terwanerik/Retini/releases), or just download / fork the project and build it yourself.After you've got the app running, you can drag single files, multiple files and directories to convert @3x or @2x images. Dragging is allowed in the Retini window as well as the App Icon in the Dock.
## How does it work?
The resized images will be placed in the same directory as the source file. The resizing goes like this:
| Generated? | Drag @3x file | Drag @2x file |
|------------|---------------|---------------|
| @2x | √ | × |
| 1x | √ | √ |The original file will never be altered, the `@2x` and `1x` are copies. If you drag a `@3x` file, the `1x` file generated will be generated from the (original) `@3x`, so no double conversion loss.
### Pixel art upscaling
You can drag a file with a `@1x` extension, Retini will scale this to a `@2x` and `@3x` file. This is nice for pixel art, upscaling is done via the nearest neighboor filter / algorithm.