Questions tagged [image-rendering]

Anything related to image rendering, i.e. the process of transforming the internal, memory (or file) representation of an image into a corresponding visual, on-screen representation.

Anything related to image rendering, i.e. the process of transforming the internal, memory (or file) representation of an image into a corresponding visual, on-screen representation.

82 questions
2
votes
1 answer

Background image trembling while transition filter at Chrome

When I change blur filter, image trembles a little bit. Here is demo at jsfiddle. Please click twice on button at demo body { background-color: #000; } body::before { content: ""; position: absolute; top: 0; left: 0; …
Evgeny Gendel
  • 81
  • 1
  • 4
2
votes
1 answer

IE10 random image rendering issue

I have a website which displays fine on all browsers (even lower versions of IE than IE10). But, on IE10, the images are having rendering issues like the screenshot attached below. If would have random colored bars on it at random times, but once…
2
votes
1 answer

Javafx image not rendering properly

I was trying to render a animated gif from a old game called Age Of Empires...and the gif renders oddly with black instead of transparent... the gif is any gif from http://ageofempiresgif.altervista.org/en/archive.php
coolsidd
  • 23
  • 1
  • 3
2
votes
2 answers

Should I use JPG or PNG for a tile-able background (background-repeat)?

I read a couple of questions on the topic and the general feedback I see is that JPGs are for photos and PNGs are for everything else: PNG should be used when: You need transparency (either 1-bit or alpha transparency) Lossless compression will…
Hristo
  • 45,559
  • 65
  • 163
  • 230
1
vote
1 answer

Scaled canvas pixelated bug on Safari

I need to scale up and transform a canvas and it works great with the following CSS property on Chrome for example: canvas { image-rendering: pixelated; } But on Safari (macOS and iOS), it remains blurry. I made a small codepen to check the…
Kalane
  • 57
  • 2
  • 8
1
vote
1 answer

How to prevent images from being pixelated in chrome using css or anything else

I'm developing a react website. In my Google Chrome browser, images showing as pixelated (image-rendering: pixelated) but in firefox work as expected (image-rendering: auto). Here is the difference, {images[0].preview} return an image url from an…
1
vote
0 answers

Java implement cross correlation 2d image

enter image description here Can i implement the cross-correlation in the same way as the convolution? I want to implement the formula in as in the picture, where Li the kernel in 4 different direction filters; Ci is the magnitude map for direction…
emily
  • 45
  • 1
  • 9
1
vote
1 answer

MacOS - Vulkan at runtime vkCreateDevice() fails when VkPhysicalDeviceFeatures wideLines = VK_TURE and doestn’t support vkCmdSetLineWidth API as well

I am new to Vulkan, and recently started learning . I am facing issue, at runtime in vkCreateDevice() fails, when VkPhysicalDeviceFeatures is enables with VkPhysicalDeviceFeatures features {}; features.wideLines =…
alshamsh93
  • 29
  • 4
1
vote
2 answers

I want to render a dynamic list of images all of them inside one carousel

Hello Stack overflow community, Thank you in advance for the help I am a rather new to react native. For this project i have imported the library nuka-carousel. So what I am trying to do is to take in a dynamic list of images and place them into a…
1
vote
1 answer

pChart image render issue on prod server and same script is working on dev server, while configurations are same

I am having the issue with pChart image rendering, The chart image is not displaying on screen on my production server while the same script is working fine on development server. Even,I have checked and compared configuration of both servers its…
zakmail007
  • 165
  • 1
  • 1
  • 4
1
vote
0 answers

Setting "imageSmoothingEnabled" To "false" Is Not Working On HTML5 Canvas

I set imageSmoothingEnabled to false on my drawing context to get sharp pixel rendering when I draw to the canvas, but for some reason the image comes out blurry. The example below sets up a 20x20 canvas filled with black and draws a red diagonal…
Frank
  • 2,050
  • 6
  • 22
  • 40
1
vote
1 answer

Why does my SVG image get cut out rather than resizing when nested inside another SVG?

I have an SVG that I want to fit in a smaller box, while preserving all ratios. I'm trying to do this by nesting the SVG inside another SVG with smaller width/height and viewbox numbers, but instead of resizing, the image is getting cut out. I've…
P_equals_NP_2021
  • 627
  • 1
  • 9
  • 27
1
vote
1 answer

Eliminate skewing effect in combined track and zoom

I am writing for HTML5 Canvas, using it as a viewport on which I maintain a central origin and zoom level. I want to track and zoom to a region, but have encountered a naturally occurring effect that spoils the look I am trying to obtain. This…
Nik Gibbs
  • 27
  • 4
1
vote
1 answer

UIView to UIImage using UIGraphicsImageRenderer wrongly renderer image with alpha

I'm converting a UIView to UIImage, to set it as navigationBar background. Thats view has an gradient layer, and when i use setBackgroundImage(_ backgroundImage: UIImage?, for barMetrics: UIBarMetrics) using the converted view, navigation gets a…
Romulo BM
  • 671
  • 8
  • 16
1
vote
1 answer

How to rendering an image using Jtable column Button rendering in a JTable?

How to add an image to a custom JTable row button, I have a JTable with a JButton in the fourth column and I want to put an image into fifth column using that button "Upload". **Note: Button working as a file uploader. Here is my image Here is the…