Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/estebanborai/framegram-cli
📷 Manipulate images for Instagram from a CLI
https://github.com/estebanborai/framegram-cli
frame golang image instagram style
Last synced: about 1 month ago
JSON representation
📷 Manipulate images for Instagram from a CLI
- Host: GitHub
- URL: https://github.com/estebanborai/framegram-cli
- Owner: EstebanBorai
- Created: 2019-11-24T19:12:45.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-22T17:45:58.000Z (about 5 years ago)
- Last Synced: 2024-11-30T12:40:41.245Z (about 1 month ago)
- Topics: frame, golang, image, instagram, style
- Language: Go
- Homepage:
- Size: 367 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# framegram-cli
📷 Manipulate images for Instagram from a CLI## Installation
*framegram* can be installed using golang's *install* command as follows.```bash
git clone https://github.com/estebanborai/framegram.git
cd ./framegram/go install
```## Usage
- [Frame](https://github.com/estebanborai/framegram#frame)
- [Resize](https://github.com/estebanborai/framegram#resize)### Frame
> Add frames to an ImageArgument | Type | Description
--- | --- | ---
src | `string` | The file to add frames to
out | `string` | The output pathSample Usage:
```
framegram -frame -src ~/Desktop/horizontal-image.jpg -out ./assets/horizontal-image.jpg
```### Resize
> Resizes an ImageArgument | Type | Description
--- | --- | ---
dimensions | `string` | The dimensions to resize the image. Sample: `800x900`
src | `string` | The file to add frames to
out | `string` | The output pathSample Usage:
```
framegram -resize -src ~/Desktop/horizontal-image.jpg -out ./assets/horizontal-image.jpg -dimensions 800x900
```