Download the PHP package hesham14yahia/image-full-control without Composer

On this page you can find all versions of the php package hesham14yahia/image-full-control. 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 image-full-control

Image Full Control

Laravel package gives you full control of uploading, managing and manipulating app images.

Requirements

Supported Image Libraries

Create files and folders

In laravel public folder create uploads folder and then create a folder for whatever type of image you will upload, let's named for example users, and add to it .gitignore file with

to prevent images to upload to git.

Install Package

How to use it "uploading"

Just add

in your controller, then call static method uploadImage()

just only two required parameters, first one the submitted image from the form, and the second one is the folder name, if you used in your method Independy Injection "Request" with the input file name "image" and folder name "users", it will be like that.

the method returns the uploaded image name.

More options "managing"

You can update image field with it, by adding the third parameter, which is an old image name, if we stick with the user example, and you created an instance of the user model, it will be like that.

the method returns the new uploaded image name and deletes the old one, if you don't want to delete the old image, just don't pass it.

You can also "manipulating"

Determine image width or height or even quality, all this is optional, but they have an order you should stick with it, so if you will use all, it will be like that.

it will make the image with width 50px and height 100px and quality 75%, if you want to use only quality for example, it will be like that.

Note: default quilty is 100%.

Image Full Path

To make handling images easier, start from version 1.3.0 we add method returns image full path accepts folder name and image name, it will be like that.


All versions of image-full-control with dependencies

PHP Build Version
Package Version
Requires intervention/image Version ^2.5
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 hesham14yahia/image-full-control contains the following files

Loading the files please wait ....