microsoft / PowerToys

Windows system utilities to maximize productivity
MIT License
111.29k stars 6.55k forks source link

how does it render pdf thumbnail preview? #27210

Closed Praskand closed 1 year ago

Praskand commented 1 year ago

Provide a description of requested docs changes

I want to know and learn and implement on my project, please help!

stefansjfw commented 1 year ago

Hi @Praskand,

You can take a look at https://github.com/microsoft/PowerToys/blob/main/src/modules/previewpane/PdfThumbnailProvider/PdfThumbnailProvider.cs. Most of the logic is there.

Additionally, you need to implement IThumbnailProvider interface and register the class as thumbnail provider. You can check it out here https://learn.microsoft.com/en-us/windows/win32/shell/building-thumbnail-providers?source=recommendations

Praskand commented 1 year ago

Thanks stefansjfw !