Skip to content

Instantly share code, notes, and snippets.

View faustbrian's full-sized avatar

Brian Faust faustbrian

View GitHub Profile
<?php
declare(strict_types=1);
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$rules = [
'array_syntax' => ['syntax' => 'short'],
'binary_operator_spaces' => [
@faustbrian
faustbrian / imagemagick-trim-transparent.sh
Created August 15, 2022 01:32 — forked from juliendargelos/imagemagick-trim-transparent.sh
Imagemagick command that trims transparent pixels from an image.
convert input.png -trim +repage output.png