Image Formats

The supported image formats depend on your GD Library configuration but best-case Intervention Image supports the following image formats.

FormatReadWrite
JPEGSupportedSupported
PNGSupportedSupported
GIFSupportedSupported

See documentation of make method to see how to read image formats from different sources.

Example

  1. // read png image and save in jpg format
  2. $img = Image::make('public/foo.png')->save('public/foo.jpg', 75);