max_cohen/image-resize-rectangle

Resize, rectangle, center .gif, .jpeg, .png image files

Installs: 15

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/max_cohen/image-resize-rectangle

0.4.0 2022-11-13 11:50 UTC

This package is not auto-updated.

Last update: 2025-12-23 08:31:42 UTC


README

Resize, rectangle, center .bmp, .gif, .jpeg, .png, .wbmp, .webp image files

Example

<?php

require 'vendor/autoload.php';

$inputFile = 'example.png';

$resizedFile = imageResizeRectangleCenter($inputFile, 100, true);

echo $resizedFile;