Coder Social home page Coder Social logo

Comments (22)

espindola avatar espindola commented on June 21, 2024

I expanded the experiment by installing fedora 37 in a VM and producing screenshots from the vm and then mounting the qcow2 image, chrooting into it and producing new screenshots. As far as I know, the only thing from alpine 3.17 being used in the chroot case is the wayland compositor (sway) and the kernel.

The 4 images are attached.

fedora-in-vm-screenshot:
fedora-in-vm-screenshot

fedora-in-vm-hardcopy:
fedora-in-vm-hardcopy

fedora-in-chroot-screenshot:
fedora-in-chroot-screen

fedora-in-chroot-hardcopy:
fedora-in-chroot-hardcopy

from openhantek6022.

iss000 avatar iss000 commented on June 21, 2024

Just for reference - Fedora 36 (64 bit), KDE, Wayland. Attached are demo mode screenshot, hardcopy and the whole window captured with spectacle.
20230226_140311
20230226_140328
Screenshot_20230226_140340

from openhantek6022.

Ho-Ro avatar Ho-Ro commented on June 21, 2024

I was able to hack it locally by multiplying the width and heighth by 2, but I am not sure what the proper fix is.

@espindola
Which screen resolution do you use?
Where did you multiply by 2?
Please give me a chance to understand the issue - I do not see this behaviour on my laptops (1280x800 and 1920x1080).

from openhantek6022.

Vascom avatar Vascom commented on June 21, 2024

I also have HiDPI monitor 3840x2112 and the same problem.
I think we need option to set waveform line width.

from openhantek6022.

Ho-Ro avatar Ho-Ro commented on June 21, 2024

set waveform line width

I already tried this long ago. Unfortunately this is not possible with the OpenGL graphics. The option for line width doesn't work - the width stays always "1".
The OpenGL implementation is more than 10 years old when hi dpi was not common. :(

from openhantek6022.

espindola avatar espindola commented on June 21, 2024

I was able to hack it locally by multiplying the width and heighth by 2, but I am not sure what the proper fix is.

@espindola Which screen resolution do you use? Where did you multiply by 2? Please give me a chance to understand the issue - I do not see this behaviour on my laptops (1280x800 and 1920x1080).

My laptop resolution is 3200x1800, but sway is configured to scale it by 2 (" scale 2" in the config file). I did the hack of multiplying by 2 by adding

     int sw = screenshot.width();
     int sh = screenshot.height();
+
+    screenshot = screenshot.scaled( sw *= 2, sh *= 2 );
+

I should probably try a KDE or Gnome session to compare. Will hopefully have that tonight.

from openhantek6022.

espindola avatar espindola commented on June 21, 2024

Thinks look OK on my desktop, which has a 4K display (but is running arch, which has a newer version of sway).

from openhantek6022.

espindola avatar espindola commented on June 21, 2024

I also have HiDPI monitor 3840x2112 and the same problem. I think we need option to set waveform line width.

Are you using Wayland or X? Which compositor?

from openhantek6022.

Vascom avatar Vascom commented on June 21, 2024

I also have HiDPI monitor 3840x2112 and the same problem. I think we need option to set waveform line width.

Are you using Wayland or X? Which compositor?

Currently X11, Kwin.

from openhantek6022.

espindola avatar espindola commented on June 21, 2024

I got the same issue with gnome instead of sway. Note that the take a regular screenshot (not via the OpenHantek menu) works just fine. One captured with grim is attached.

Looks like QT knows to do something different when outputting directly to the screen instead of to a QPixmap.

20230227_17h41m03s_grim

from openhantek6022.

espindola avatar espindola commented on June 21, 2024

One possible workaround is to disable the hdpi scaling just to produce the screenshot/hardcopy. This is what I got when I did that:

20230227_175739

from openhantek6022.

Ho-Ro avatar Ho-Ro commented on June 21, 2024

@espindola What are your values of sw and sh before you scale them? About 3200x1800 or 1600x900 (scale2)?

     int sw = screenshot.width();
     int sh = screenshot.height();
+    qDebug() << "screenshot size:" << sw << "x" << sh;

     screenshot = screenshot.scaled( sw *= 2, sh *= 2 );

from openhantek6022.

espindola avatar espindola commented on June 21, 2024

@espindola What are your values of sw and sh before you scale them? About 3200x1800 or 1600x900 (scale2)?

     int sw = screenshot.width();
     int sh = screenshot.height();
+    qDebug() << "screenshot size:" << sw << "x" << sh;

     screenshot = screenshot.scaled( sw *= 2, sh *= 2 );

I got:

screenshot size: 1596 x 841

from openhantek6022.

Ho-Ro avatar Ho-Ro commented on June 21, 2024

Ok, you get the downscaled size and upscale it to the correct 1:1 size.
Now the question, how to know if you're downscaling by 2 (or even by 4)?
A quick solution would be to make it a persistent config option that defaults to 1 and can be changed in the range of e.g. 1..8 - dunno if you have a better idea to detect it automatically.

from openhantek6022.

espindola avatar espindola commented on June 21, 2024

Ok, you get the downscaled size and upscale it to the correct 1:1 size. Now the question, how to know if you're downscaling by 2 (or even by 4)? A quick solution would be to make it a persistent config option that defaults to 1 and can be changed in the range of e.g. 1..8 - dunno if you have a better idea to detect it automatically.

Given that the image looks OK when drawing directly (not writing to the QPixmap), Qt must know this somehow (see #353 (comment)) , but I don't know where to look.

from openhantek6022.

Ho-Ro avatar Ho-Ro commented on June 21, 2024

Please try the latest unstable - set scale factor in menu Oscilloscope/Settings/Scope/Upscale exported images

from openhantek6022.

espindola avatar espindola commented on June 21, 2024

Please try the latest unstable - set scale factor in menu Oscilloscope/Settings/Scope/Upscale exported images

The resolution is fixed, but some lines are still broken. Compare with #353 (comment)

20230304_190321

from openhantek6022.

Ho-Ro avatar Ho-Ro commented on June 21, 2024

Which value did you set? 2?

from openhantek6022.

espindola avatar espindola commented on June 21, 2024

Which value did you set? 2?

Yes, 2.

from openhantek6022.

Ho-Ro avatar Ho-Ro commented on June 21, 2024

strange, then it should give the same result as your

+
+    screenshot = screenshot.scaled( sw *= 2, sh *= 2 );
+

But now another shot in the dark -> new unstable (1e7788b)

from openhantek6022.

espindola avatar espindola commented on June 21, 2024

But now another shot in the dark -> new unstable

Fixed!
20230305_144845

from openhantek6022.

Ho-Ro avatar Ho-Ro commented on June 21, 2024

@Vascom @iss000 Please double check also with your HiDPI setup.

from openhantek6022.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.