This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; RDP Wrapper Library configuration | |
| ; Do not modify without special knowledge | |
| [Main] | |
| Updated=2023-11-08a | |
| LogFile=\rdpwrap.txt | |
| SLPolicyHookNT60=1 | |
| SLPolicyHookNT61=1 | |
| [PatchCodes] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt update -y \ | |
| && sudo apt install -y --no-install-recommends libpng-dev libjpeg-dev libtiff-dev \ | |
| && wget https://imagemagick.org/download/ImageMagick.tar.gz \ | |
| && tar xf "ImageMagick.tar.gz" \ | |
| && cd ImageMagick* \ | |
| && ./configure \ | |
| --disable-static \ | |
| --enable-shared \ | |
| --with-jpeg \ | |
| --with-png \ |