skip to Main Content

QML Image Masking – Photoshop

I have been working on a project where I need to apply image masking that applies an effect like this: Pic1: https://i.stack.imgur.com/6zI2x.jpg Pic2: https://i.stack.imgur.com/z7IVX.jpg Mask frame: https://i.stack.imgur.com/3syEm.jpg Desired effect: https://i.stack.imgur.com/t2kO5.jpg I got it to work by using OpacityMask however to…

VIEW QUESTION

QT request https url, ok in windows ko in linux – Debian

I have the following code in QT that correctly get the webpage in Windows ( 7 x64 ) but not in Linux Debian 9.13 void Mycl::getdata() { QNetworkAccessManager *networkManager; networkManager = new QNetworkAccessManager(this); QString urlStr="https://......."); QUrl url(urlStr); QNetworkRequest request; request.setUrl(url);…

VIEW QUESTION
Back To Top
Search