File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 22
22
"require" : {
23
23
"php" : " ^8.1" ,
24
24
"illuminate/support" : " ^8|^9|^10|^11" ,
25
- "intervention/image" : " ^3.7 "
25
+ "intervention/image" : " ^3.11 "
26
26
},
27
27
"require-dev" : {
28
28
"phpunit/phpunit" : " ^10.0 || ^11.0" ,
Original file line number Diff line number Diff line change 32
32
| decoded as such or whether the animation is discarded.
33
33
|
34
34
| - "blendingColor" Defines the default blending color.
35
+ |
36
+ | - "strip" controls if meta data like exif tags should be removed when
37
+ | encoding images.
35
38
*/
36
39
37
40
'options ' => [
38
41
'autoOrientation ' => true ,
39
42
'decodeAnimation ' => true ,
40
43
'blendingColor ' => 'ffffff ' ,
44
+ 'strip ' => false ,
41
45
]
42
46
];
Original file line number Diff line number Diff line change @@ -43,7 +43,8 @@ public function register()
43
43
driver: config ('image.driver ' ),
44
44
autoOrientation: config ('image.options.autoOrientation ' , true ),
45
45
decodeAnimation: config ('image.options.decodeAnimation ' , true ),
46
- blendingColor: config ('image.options.blendingColor ' , 'ffffff ' )
46
+ blendingColor: config ('image.options.blendingColor ' , 'ffffff ' ),
47
+ strip: config ('image.options.strip ' , false )
47
48
);
48
49
});
49
50
}
You can’t perform that action at this time.
0 commit comments