Skip to content
This repository has been archived by the owner on Apr 26, 2021. It is now read-only.

Latest commit

 

History

History
18 lines (10 loc) · 344 Bytes

README.md

File metadata and controls

18 lines (10 loc) · 344 Bytes

Ninepatch-for-php

A simple script who can convert ninepatch (9-patch) images to usable images

Usage:

$file = "The filename to the ninepatch image";

// final size of the image
$width = 300;
$height =  800;

$back = 'trans';// the fillup color

ninepatchResize($file, $width,$height,$back='trans')