Skip to content

Releases: Intervention/image

3.10.2

04 Jan 07:37
1c68e5f
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.10.1...3.10.2

3.10.1

27 Dec 14:57
8230387
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.10.0...3.10.1

3.10.0

21 Dec 07:58
1ddc9a0
Compare
Choose a tag to compare

What's Changed

Implementation of __debugInfo()

For Christmas🎄🎁, a small but nice feature: Implementation of __debugInfo() for various classes. Resulting in more informative debug information when objects of the classes are output via var_dump().

For example the following code:

$image = ImageManager::gd()->read($path);
$color = $image->pickColor(0, 0);

var_dump($image, $color);

results in:

object(Intervention\Image\Image)#44 (2) {
  ["width"]=>
  int(270)
  ["height"]=>
  int(168)
}
object(Intervention\Image\Colors\Rgb\Color)#9 (4) {
  ["red"]=>
  int(123)
  ["green"]=>
  int(165)
  ["blue"]=>
  int(157)
  ["alpha"]=>
  int(255)
}

Implementing Classes

  • Intervention\Image\Image
  • Intervention\Image\Origin
  • Intervention\Image\EncodedImage
  • Intervention\Image\Drivers\Gd\Frame
  • Intervention\Image\Drivers\Imagick\Frame
  • Intervention\Image\Geometry\Rectangle
  • Intervention\Image\Colors\Rgb\Color
  • Intervention\Image\Colors\Cmyk\Color
  • Intervention\Image\Colors\Hsl\Color
  • Intervention\Image\Colors\Hsv\Color

3.9.1

27 Oct 10:25
b496d1f
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.9.0...3.9.1

3.9.0

19 Oct 07:04
1e0a2b6
Compare
Choose a tag to compare

What's Changed

  • EncodedImage::class now holds data in a more efficient temporary stream resource
    by @olivervogel in #1397

3.8.0

17 Aug 07:05
1786ad5
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.7.2...3.8.0

3.7.2

06 Jul 06:13
5451ff9
Compare
Choose a tag to compare

What's Changed

  • Add non-standard JPEG mimetype image/x-jpeg by @dvlpp
  • Fix bug in encoding animated WEBP format by @phknot

Full Changelog: 3.7.1...3.7.2

3.7.1

29 Jun 07:58
137bdb3
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.7.0...3.7.1

3.7.0

15 Jun 08:15
6bfd3dd
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.6.5...3.7.0

3.6.5

06 Jun 17:20
d428433
Compare
Choose a tag to compare

What's Changed