https://github.com/cdhunt/pip
PowerShell ImageProcessor
https://github.com/cdhunt/pip
Last synced: about 1 year ago
JSON representation
PowerShell ImageProcessor
- Host: GitHub
- URL: https://github.com/cdhunt/pip
- Owner: cdhunt
- License: apache-2.0
- Created: 2014-05-23T11:52:42.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2018-03-29T13:32:19.000Z (about 8 years ago)
- Last Synced: 2025-03-17T23:44:18.579Z (about 1 year ago)
- Language: PowerShell
- Size: 244 KB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
PIP
===
### PowerShell ImageProcessor
This PowerShell module wraps [James M South's ImageProcessor](http://jimbobsquarepants.github.io/ImageProcessor/ "ImageProcessor") library.
> ImageProcessor is a collection of lightweight libraries written in C# that allows you to manipulate images on-the-fly using .NET 4+
>
> It's lighting fast, extensible, easy to use, comes bundled with some great features and is fully open source.
This is not the first image manipulation module for PowerShell, but it's fast, functional and a good example of how to expose functionality from a .Net library via PowerShell.
Install
===
With the [PowerShellGet](https://www.powershellgallery.com/) module:
```powershell
Install-Module -Name PIP
```
Examples
===
```powershell
Get-PIPImage source.bmp |
Resize-PIPImage -Width 100 -Height 100 |
Add-PIPFilter -Filter blackwhite |
Add-PIPRoundedCorners |
Set-PIPFormat -Format Jpeg |
Save-PIPImage -Path output.jpg
```