Search found 150 matches

by Mixer
Tue Oct 06, 2015 3:31 am
Forum: Classic - Bug Reports
Topic: Problem with opening of some file
Replies: 4
Views: 1259

Re: Problem with opening of some file

"Doesn't suport Unicode natively" doesn't mean "can't get access to file's content in principle".
Hmm, ker Joined: Sun May 05, 2013 4:12 am, first post Sun Oct 04, 2015 12:36 pm. XnView is good software if you have encountered first issue only 2,5 years after joining forum, right?
by Mixer
Wed Sep 16, 2015 12:33 pm
Forum: Classic - Resolved Bugs & Requests
Topic: “Copy image data” loses transparency
Replies: 19
Views: 28508

Re: “Copy image data” loses transparency

Then why if ClipboardNewMethod=1 copying to clipboard may produce CF_DIB with NULL handle? The system implicitly converts data between certain clipboard formats: if a window requests data in a format that is not on the clipboard, the system converts an available format to the requested format. The s...
by Mixer
Tue Sep 15, 2015 8:56 pm
Forum: Classic - Resolved Bugs & Requests
Topic: “Copy image data” loses transparency
Replies: 19
Views: 28508

Re: “Copy image data” loses transparency

It doesn't work for indexed PNGs with alpha-channel transparency (like app-xnsoft-512.png ), but that's probably due to the known limitaion mentioned in one of my previous posts . IMO, if XnView does not create custom clipboard formats but uses CF_DIB or CF_DIBV5 (which are basically BMP) for anyth...
by Mixer
Tue Sep 15, 2015 6:28 pm
Forum: Classic - Resolved Bugs & Requests
Topic: “Copy image data” loses transparency
Replies: 19
Views: 28508

Re: “Copy image data” loses transparency

Question to Pierre. When ClipboardNewMethod=1, do you call SetClipboardData() with handle set to NULL? Do you call CloseClipboard() after CF_DIB is pushed to clipboard with ClipboardNewMethod=1 ? hMem [in, optional] Type: HANDLE A handle to the data in the specified format. This parameter can be NUL...
by Mixer
Fri Sep 11, 2015 12:08 am
Forum: Classic - Resolved Bugs & Requests
Topic: “Copy image data” loses transparency
Replies: 19
Views: 28508

Re: “Copy image data” loses transparency

The bug ocurrs on XP SP3 and 2K SP4. Does it depend on the Windows version how applications (such as XnView) copy image data to the clipboard? After XnView 2.34 is out, copying logo.png to clipboard works for me on XP SP3 and 2K SP4 in following way. With ClipboardNewMethod=0 copying and pasting in...
by Mixer
Mon Sep 07, 2015 2:02 am
Forum: Classic - Bug Reports
Topic: Use LIBQUANT
Replies: 11
Views: 3410

Re: Use LIBQUANT

@wilk: if headers don't lie, xnview.exe and libquant.dll were built in different versions of Visual Studio (2008 for xnview.exe and 2013 for libquant.dll). Compiler of both Studios has /arch:SSE option. Now it's only a matter of good will of Pierre to try it or not.
by Mixer
Mon Sep 07, 2015 1:46 am
Forum: Classic - General Support
Topic: How to hide menu in viewing mode?
Replies: 6
Views: 2403

Re: How to hide menu in viewing mode?

Try Fullscreen (press F11).
I don't think hiding parts of interface is possible in any other way yet.
by Mixer
Fri Sep 04, 2015 1:18 am
Forum: MP - General Support
Topic: Association tool
Replies: 1
Views: 413

Re: Association tool

Dependency Walker can confirm that if you ask him nicely. Says QTCORE4.DLL, QTGUI4.DLL and QTNETWORK4.DLL are missing (the rest are just usual unimportant complains for any application). Probably it's because 0.75 is built with Qt5 (which in its turn has numbers in different place - Qt5Core.dll, Qt...
by Mixer
Tue Sep 01, 2015 9:48 pm
Forum: MP - General Support
Topic: Minimize XnViewMP to tray?
Replies: 6
Views: 998

Re: Minimize XnViewMP to tray?

If option "Minimize to tray" is nowhere to be found in XnViewMP settings, options and config files, then maybe it's not there. Having such ability needs redefining behavior of window title bar buttons or adding custom one in application code ( example ) like it is done in uTorrent, Download Master, ...
by Mixer
Tue Sep 01, 2015 12:31 pm
Forum: NConvert
Topic: Output filename parameters
Replies: 4
Views: 4118

Re: Output filename parameters

Are you going to add escape character to escape sequence "$#" if it is present in name of file too? And then add another escape character to escape this new escape character if you again choose some character allowed for using in filenames? Until all filename is filled by escape characters up to MAX...
by Mixer
Tue Sep 01, 2015 9:28 am
Forum: NConvert
Topic: Output filename parameters
Replies: 4
Views: 4118

Re: Output filename parameters

I would like that utility I use did its job quietly without imposing more restrictions on character set for naming files than it is already done by operating system. If this user here will use -no# option he'll be fine with writing to folders with # in name, but he will lose chance to use numerators...
by Mixer
Mon Aug 31, 2015 9:27 pm
Forum: MP - General Support
Topic: Minimize XnViewMP to tray?
Replies: 6
Views: 998

Re: Minimize XnViewMP to tray?

Judging by what Google outputs for "minimize any application to tray tool" request there should be a way, but, to be honest, I never tried any of them.
by Mixer
Sun Aug 30, 2015 4:13 pm
Forum: NConvert
Topic: Output filename parameters
Replies: 4
Views: 4118

Output filename parameters

-no# : # not used for numeric operator -o filename : Output filename Use # to specify position of numeric enumerator Use % to specify source filename Use $ to specify full source pathname Use $$ to specify source folder name Use $EXIF:DateModified[date format] to specify EXIF date modified Use $EXI...
by Mixer
Sat Aug 29, 2015 11:53 pm
Forum: NConvert
Topic: skip owerwrite if exist
Replies: 5
Views: 2585

Re: skip owerwrite if exist

You're welcome. It works only while your files have none of characters % # $ in their names.
by Mixer
Fri Aug 28, 2015 7:10 am
Forum: NConvert
Topic: skip owerwrite if exist
Replies: 5
Views: 2585

Re: skip owerwrite if exist

Hi Zurdo. On Windows you could use batch file similar to this.

Code: Select all

@echo off
for %%i in ("C:\Source Directory\*") do (
if not exist "F:\Destination Directory\%%~nxi" start /wait nconvert.exe -o "F:\Destination Directory\%%~nxi" -resize longest 199 "%%i"
)
pause