Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!5800
An error occurred while fetching the assigned milestone of the selected merge_request.
#3261924
Avoid warning from imagecreatefrompng when loading png with obscure iCCP profiles
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
#3261924
Avoid warning from imagecreatefrompng when loading png with obscure iCCP profiles
issue/drupal-3261924:11.x
into
11.x
Overview
9
Commits
19
Pipelines
19
Changes
3
Closed
Elaman Imashov
requested to merge
issue/drupal-3261924:11.x
into
11.x
1 year ago
Overview
9
Commits
19
Pipelines
19
Changes
3
Expand
0
0
Merge request reports
Compare
11.x
version 18
3ce62f98
4 months ago
version 17
dd7ed1ed
6 months ago
version 16
844090d1
6 months ago
version 15
6173df27
8 months ago
version 14
71ec0daf
8 months ago
version 13
4f645847
10 months ago
version 12
cfdea558
10 months ago
version 11
0a08676e
1 year ago
version 10
0d7c89ce
1 year ago
version 9
6d33f33e
1 year ago
version 8
e8ff9201
1 year ago
version 7
a31b0256
1 year ago
version 6
9db3cdc5
1 year ago
version 5
5f5856b6
1 year ago
version 4
47510761
1 year ago
version 3
79df7b11
1 year ago
version 2
9d0db72d
1 year ago
version 1
9d65d101
1 year ago
11.x (base)
and
latest version
latest version
77f9a885
19 commits,
2 months ago
version 18
3ce62f98
18 commits,
4 months ago
version 17
dd7ed1ed
17 commits,
6 months ago
version 16
844090d1
16 commits,
6 months ago
version 15
6173df27
15 commits,
8 months ago
version 14
71ec0daf
14 commits,
8 months ago
version 13
4f645847
13 commits,
10 months ago
version 12
cfdea558
12 commits,
10 months ago
version 11
0a08676e
11 commits,
1 year ago
version 10
0d7c89ce
10 commits,
1 year ago
version 9
6d33f33e
9 commits,
1 year ago
version 8
e8ff9201
8 commits,
1 year ago
version 7
a31b0256
7 commits,
1 year ago
version 6
9db3cdc5
6 commits,
1 year ago
version 5
5f5856b6
5 commits,
1 year ago
version 4
47510761
4 commits,
1 year ago
version 3
79df7b11
3 commits,
1 year ago
version 2
9d0db72d
2 commits,
1 year ago
version 1
9d65d101
1 commit,
1 year ago
3 files
+
75
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php
+
5
−
1
Options
@@ -191,7 +191,11 @@ protected function load() {
// Invalidate the image object and return if the load fails.
try
{
$image
=
$function
(
$this
->
getSource
());
// Suppress warnings from a library action. Some functions can trigger
// warnings that are not actionable like loading a PNG content with
// certain color profiles. Actual issues with image processing will
// trigger exceptions that are logged later on.
$image
=
@
$function
(
$this
->
getSource
());
}
catch
(
\Throwable
$t
)
{
$this
->
logger
->
error
(
"The image toolkit '@toolkit' failed loading image '@image'. Reported error: @class - @message"
,
[
Loading