Log in

View Full Version : Viewer for EBMP images/files? (as generated by ImageWriter)


pbristow
31st January 2014, 14:02
Has anyone created a simple image viewer for the EBMP format, as used by ImageWriter/ImageSource? Something I can drag & drop an ebmp file onto to quickly check the contents are as expected?

I found this:
http://lainx.comuf.com/ebmp/
- but it seems to be expecting a different file format with the same name. Not to mention generating scary malware warnings before the download. I treated it with kid gloves, scanned it with everything I've got (including HexEdit and my own eyeballs!), and it seems to be harmless... but also useless for my purposes. :(

StainlessS
31st January 2014, 14:08
Cannot help with post question, but for future reference, VirusTotal.com is a good AV site, upload and scan with about 43 anti virus products.

raffriff42
31st January 2014, 14:31
For quick viewing, drag and drop into AvsPmod and hit Preview.
(requires editing default source to "ImageSource")

EDIT Here's a drag-and-drop image file viewer: ::@echo off

::*** CONFIGURATION: SET PATH TO PREFERRED AVISYNTH PLAYER ***
set PLAYER="..."

@echo #avisynth > "%~dpn1-img.avs"
@echo ImageSource("%~dpnx1") >> "%~dpn1-img.avs"

%PLAYER% "%~dpn1-img.avs"
if errorlevel 1 pause
del "%~dpn1-img.avs"
@echo.(save as imageview.bat)