BLIP - BLP and DDS viewer

This bundle is marked as pending. It has not been reviewed by a staff member yet.
This is a viewer for BLP and DDS images.

how to install:
1. extract anywhere.
2. run as admin "RegisterExtensions.exe".
3. Now when you double-click on a blp or dds image it will display it. Enjoy.

github repo: click

28/10/24:
Fixed wrong window size for some blp images
Previews
Contents

BLIP - BLP and DDS viewer (Binary)

Ralle

Owner
Level 79
Joined
Oct 6, 2004
Messages
10,212
Cool!

There is something about the window size when opening an icon. It doesn't show the whole icon. Also, what happens if the icon is bigger than the screen?
1730147507184.png

Also, it would be cool if you could integrate with the tiny icon next to the filename (or the bigger one on the desktop and the icon viewing in explorer) so it shows the icon there.
 
Cool!

There is something about the window size when opening an icon. It doesn't show the whole icon. Also, what happens if the icon is bigger than the screen?
View attachment 494099
Also, it would be cool if you could integrate with the tiny icon next to the filename (or the bigger one on the desktop and the icon viewing in explorer) so it shows the icon there.
hmm, Im sure I Set auto-resize of the window. will check it out

EDIT: Fixed
 
Last edited:
Level 3
Joined
Dec 4, 2017
Messages
12
I tried opening a texture with a 2048x2048 dimension, but the window size is wrong. I have to use ALT+SPACE to move the window. It works perfectly in 512x
2048.png
 
Last edited:
I tried opening a texture with a 2048x2048 dimension, but the window size is wrong. I have to use ALT+SPACE to move the window. It works perfectly in 512x and 1024x.View attachment 494685
You mean window size or window position? The window is set to start at screen center but probably the resizing changes its position. Try now, updated.
Code:
this.Left = (SystemParameters.PrimaryScreenWidth - this.ActualWidth) / 2;    
this.Top = (SystemParameters.PrimaryScreenHeight - this.ActualHeight) / 2;
 
Level 3
Joined
Dec 4, 2017
Messages
12
You mean window size or window position? The window is set to start at screen center but probably the resizing changes its position. Try now, updated.

Yes, the window position is not centered, and the window size is too big. If I open 1K or 2K textures, the window size stretches offscreen, and I can't move it around without using Alt+Space. This doesn't happen in 512x512 textures, though.
 
Top