Skip to content

Instantly share code, notes, and snippets.

View Advik-B's full-sized avatar

Advik Advik-B

View GitHub Profile
@Advik-B
Advik-B / dark-style.css
Created March 22, 2022 14:36
Modern Qt StyleSheet for dark theme lovers
/*-----QWidget-----*/
QWidget
{
background-color: #121212;
color: #ffffff;
border-color: #051a39;
}
@prashanthrajagopal
prashanthrajagopal / screenshot.cpp
Last active October 23, 2024 13:14
Take a screenshot and save as jpeg in c++
#include <stdio.h>
#include <windows.h>
#include <gdiplus.h>
#include <time.h>
int GetEncoderClsid(const WCHAR* format, CLSID* pClsid) {
using namespace Gdiplus;
UINT num = 0;
UINT size = 0;