Skip to content

Instantly share code, notes, and snippets.

View jnbn's full-sized avatar

Ugur Aydogdu jnbn

View GitHub Profile
@jnbn
jnbn / imagick3.4.4-PHP7.2-forge.sh
Last active August 27, 2019 12:44 — forked from danielstgt/imagick3.4.3-PHP7.3-forge.sh
Install Imagick 3.4.4 on PHP 7.2 server (Laravel Forge)
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
apt-get install pkg-config libmagickwand-dev -y
cd /tmp
wget https://pecl.php.net/get/imagick-3.4.4.tgz
tar xvzf imagick-3.4.4.tgz
@jnbn
jnbn / PNGWhiteTrim.py
Last active January 22, 2018 20:08 — forked from thomastweets/PNGWhiteTrim.py
Python script to trim all png images with white background in a folder
from PIL import Image
import sys
import glob
# Trim all png images with alpha in a folder
# Usage "python PNGAlphaTrim.py ../someFolder"
try:
folderName = sys.argv[1]
except :