THausherr commented on pull request #107:
URL: https://github.com/apache/pdfbox/pull/107#issuecomment-813258443
> PDDeviceCMYK.INSTANCE is not final
That is for code like this, which uses the official Adobe CMYK icc profile
(with incompatible license)
```
//
https://www.adobe.com/support/downloads/iccprofiles/iccprofiles_win.html
PDDeviceCMYK.INSTANCE = new PDDeviceCMYK()
{
@Override
protected ICC_Profile getICCProfile() throws IOException
{
return ICC_Profile.getInstance("USWebCoatedSWOP.icc");
}
};
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]