Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 Image

Argument | Type | Description
--- | --- | ---
src | `string` | The file to add frames to
out | `string` | The output path

Sample Usage:
```
framegram -frame -src ~/Desktop/horizontal-image.jpg -out ./assets/horizontal-image.jpg
```

### Resize
> Resizes an Image

Argument | Type | Description
--- | --- | ---
dimensions | `string` | The dimensions to resize the image. Sample: `800x900`
src | `string` | The file to add frames to
out | `string` | The output path

Sample Usage:
```
framegram -resize -src ~/Desktop/horizontal-image.jpg -out ./assets/horizontal-image.jpg -dimensions 800x900
```