Download the PHP package aslamhus/rectpacker without Composer

On this page you can find all versions of the php package aslamhus/rectpacker. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package rectpacker

Rectangle Packer

RectanglePacker is a JavaScript\PHP class designed to efficiently pack rectangles of the same aspect ratio into a defined space, tackling the NP-hard bin packing problem using a heuristic algorithm. For more information on this problem see the wiki. This heuristic solves the second variant listed in the article, Packing identical squares in a rectilinear polygon.

Defining the problem

I designed this algorithm in order to maximally fill the horizontal and vertical space within different screen areas with a grid of tiles where only the aspect ratio was known and the number of videos was variable. In my use case, the aspect ratio was 4/5.

CSS Layout Algorithms

I couldn't achieve the desired effect with browser layout algorithms like css flexbox or grid. Neither could maximally fill containers both horizontally and vertically without either explicitly setting a height/width value for a flex/grid-item or using javascript to correct the layout (though I would love to see someone prove me wrong!). Regardless, I needed an implementation that could work on the server, not the client side.

Try the algorithm visualizer online

If you'd like to take the algorithm for a spin, you can find a testing application online which visualizes the packer at work: https://aslamhus.github.io/RectanglePacker/example

Play with different screen areas, numbers of tiles, gutter size, tile aspect ratio and more.

Usage

This class is available in JavaScript and PHP for client and server implementation.

JavaScript

Clone the repo and import from the src directory. If requested, I'll make this available as an npm package.

Clone the repo

Import and use

PHP

install with composer

Use

Result

The heuristic outputs the (x,y) positions for each tile of the grid, allowing you to arrange your grid based on the coordinates therein. The result of the heuristic, if successful, will be an object (or in the PHP class an associative array) with the following keys:

If unsuccessful, RectanglePacker will throw an error.

Options

The RectanglePacker algorithm's behaviour can be configured with the following options which can be set when initializing an instance of the RectanglePacker or when calling the setOptions method to reinitialize the algorithm. Below is a detailed description of each configurable option:

Required parameters

screenArea

tiles

tileAspectRatio

Constraints (Optional)

gutter

minTileWidth

minTileHeight

maxTileHeight

columns

allowIncompleteRow

completeRectangle

canRemoveTiles

tryLimit

errorMargin

performanceLimit

debug

Callback Option

onError

Example

Efficiency

Though I have not extensively measured the time complexity of the algorithm, most cases are solved within 1-4 milliseconds and 1 - 10 iterations. As you add more constraints, the time complexity will increase. When I have time (haha!) I would love to measure this more precisely. Feedback/observations are welcome!

Potential Improvements

Metaheuristic

Run the heuristic multiple times with different starting best guesses, potentially leveraging web workers for efficiency if necessary. Develop a method to measure the viability of the solutions, with remaining space as the main criterion.

Unit Testing

RectanglePacker repo includes a json file with an array of test values, each with expected outputs. You can test both the PHP and JavaScript implentations of the algorithm with these test values.

PHPUnit tests

JavaScript tests

Note on gutter accuracy \ Browser sub-pixel rounding

In the testing application the gutter may appear off by a pixel or two. This is because the browser rounds pixel values. If the gutter is small and each tile width is rounded up or down (depending on your browser), the gutter at the end of each row will appear truncated. This is a known issue and not a bug in the algorithm. You can examine the tile positions in the result of the packer to confirm that the gutter values are correct. At a later date, I will attempt to account for this pixel rounding issue in the JavaScript implementation of the algorithm.

License

This Rectangle Packer class is licensed under the MIT License. Feel free to use and modify it according to your needs.

Happy Packing!!


All versions of rectpacker with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package aslamhus/rectpacker contains the following files

Loading the files please wait ....