4,055 questions
Advice
0
votes
11
replies
173
views
How should I grab raw pixel data from a .png file (using Bash)?
I've been looking into making a script that grabs the raw pixel data from a .png file & writes it directly to the framebuffer, but how would I actually grab the data? I know PNG files have a bunch ...
Best practices
0
votes
3
replies
142
views
Extract data from a line graph
I want to convert the information on a graph/chart to a tabular form. Table contains divisions from x axis and their corresponding values. The graph is line graph and scale is linear. i have achieved ...
Score of 0
0 answers
236 views
GODOT Pixel font has extra pixel of spacing
I am making a pixel mobile game, and using a 3x5 pixel font. But Godot is adding a pixel of spacing around and I cant figure out why. Is this something to do with the font, or is there a Godot setting ...
Score of 0
0 answers
118 views
SFML 3 - Raycasting 3D - Floor Texture and Sprite from Image Working then Crash
C++ 20 / SFML 3.0 / Visual Studio 2022 / Windows 10
My build run exactly how I want it to... for about five seconds. If I reduce the max frame rate to 60, it will run for about twice that long. After ...
Score of -1
1 answer
763 views
Flutter app not launch on some devices with android 15. On pixel 6,7 and Samsung s24+
I'm encountering a strange issue where my Flutter app fails to launch on some Android 15 devices. It affects both Samsung (One UI) and Pixel devices. However, the app works correctly on many other ...
Score of 1
0 answers
200 views
Health Connect permission screen not showing on Pixel 9a (Android 15)
I am developing an Android app using Health Connect (version 1.1.0-rc01) on a Pixel 9a running Android 15.
I'm trying to request Health Connect permissions (e.g., android.permission.health.READ_STEPS) ...
Score of 3
1 answer
1141 views
How do I scale my pixel art game in GameMaker without blurring the sprites?
I'm currently developing a pixel art game in GameMaker Studio 2, and I'm running into issues with scaling and resolution that affect how my pixel art looks. My game has a native resolution of 320x180, ...
Score of 0
0 answers
61 views
Different dimensions of html-Element between different displays
For a "browser fingerprint" project at university I want to measure dimensions of different html-elements to get a fingerprint due to different rendering engines and configurations of the ...
Score of 0
1 answer
107 views
Tkinter Text widget width doesn't match combined width of two Button widgets despite proportional calculations
I'm creating a Tkinter GUI where I want a black Text widget (message_entry) to be exactly the same width as the combined width of two horizontally placed buttons. I’m using proportions of the screen ...
Score of -3
1 answer
108 views
How to Track Purchase Event in Shopify Theme Extension Without Checkout Access?
I am working on a Shopify theme extension and need to send the Purchase event to Meta through the Meta Pixel. However, theme extensions do not have access to the checkout or thank-you pages, making it ...
Score of 0
1 answer
76 views
What's the max size limit on android.net.wifi.aware.DiscoverySession.sendMessage?
Unknown size limit of API: android.net.wifi.aware.DiscoverySession.sendMessage causes System.err
Link to documentation: https://developer.android.com/reference/android/net/wifi/aware/DiscoverySession#...
Score of 1
1 answer
280 views
How do I get a 3D collision with a Heightmap in Raylib?
I'm presently trying to do a sorta Starfox clone with Raylib, using the heightmap example here: https://www.raylib.com/examples/models/loader.html?name=models_heightmap
In order to handle collision in ...
Score of 1
1 answer
186 views
What the format field of the SDL_PixelFormat struct is for?
Can someone tell me what the format field of the SDL_PixelFormat is for? What does it contain? The documentation of the SDL2 library does not give enough detail.
https://wiki.libsdl.org/SDL2/...
Score of 1
0 answers
57 views
Render multiple pixels in SDL2 C [duplicate]
I've recently been trying to make an VGA terminal in C using SDL2.
So far, I've rendered pixels by using this function here:
void update(SDL_Renderer** ren){
for(u16 y = 0; y < 480; y++){
...
Score of 0
1 answer
43 views
Workable area pixel range of monitor (without bezels)
I know the EDID information received from monitors gives you the native resolution for that monitor (usually the highest supported resolution). The native resolution for a monitor should be the ...