Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Update jpgraph source file to remove check for imageantialias() … #5284

Merged
merged 1 commit into from Jan 2, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions vendor/amenadiel/jpgraph/src/image/Image.php
Expand Up @@ -99,9 +99,9 @@ public function SetAntiAliasing($aFlg = true)
$this->use_anti_aliasing = $aFlg;
if (function_exists('imageantialias')) {
imageantialias($this->img, $aFlg);
} else {
}/* else {
Util\JpGraphError::RaiseL(25128); //('The function imageantialias() is not available in your PHP installation. Use the GD version that comes with PHP and not the standalone version.')
}
}*/
}

public function GetAntiAliasing()
Expand Down