I'm just starting to write some PHP using the Imagick / ImageMagick library, and have seen several examples regarding setImageCompression which appear to implement things differently.
For example I've seen it used like this:
$image->setImageCompression(Imagick::COMPRESSION_LZW);
and also like this:
$image->setImageCompression(\Imagick::COMPRESSION_UNDEFINED);
So, what is the relevance of the backslash before declaring the compression type? Is this specific to the compression type? A typo in examples I've seen or something else?