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
0
votes
0 answers

How to reduce load time of displaying images from S3

I am storing 6 images in S3, and getting all of them in a single request, by a call to S3 per image. The load time of the page already increased by 1-2 seconds, and there are more images to come. I am converting images to base64 from buffer after…
0
votes
1 answer

ThreeJs: Unable to load different image on the top and bottom sides

I am trying to put different images on the top and bottom side both using texture in Threejs. But I am getting the same image at the bottom as well as the top. below is the code that I am using. My requirement is to display different images on both…
Java-Dev
  • 438
  • 4
  • 20
0
votes
1 answer

Fresco - How to check if a file is animated webP or not progrmmatically?

I have an image file of webP format. How can I check if it is animated webP or a static image programmatically?
Ganesh S S
  • 571
  • 5
  • 10
0
votes
1 answer

How to read image stored in azure storage by using url

I upload the image by using azure blobclientservice as belows let fr = new FileReader(); let result = {}; fr.onload = async function () { var data = fr.result; await blockBlobClient .uploadData(data, { concurrency: 20, …
mingxingwang
  • 169
  • 4
  • 17
0
votes
1 answer

Chrome 88 change causing blurred images during translate3d transition

A sliding image gallery has started performing terribly after updating Chrome to 88. See this site for example: https://fionaandbobby.com/ You can view it in FF or Safari to see it performing how it used to perform in Chrome. After some research I…
0
votes
1 answer

Wordpress image rendering problem on iPhone 6 / iPhone6 Plus

We have a page that contains 20 .svg images. Page renders completely fine on first load for all of the devices that we tested but specifically for iPhone 6 and iPhone 6 Plus once we scrolled the page to bottom or to top a little fast images gets…
0
votes
1 answer

Handling multiple images in SDL2

I'm wondering how to handle more than one image using IMG_Load(); Do I always have to create a surface for every image? Or I have to create some loop that will create texture only using this one surface? SDL_Surface* surface =…
krystof
  • 1
  • 3
0
votes
1 answer

Array of Images ReactJs responsive carousel

I am just getting started with web pages. I am trying to make a function for the react responsive carousel so I can pass an array of images and it renders depending on the number of images, I've been trying to run something like…
ljcq 09
  • 115
  • 1
  • 1
  • 8
0
votes
0 answers

Image from database is not displayed in django template

I am trying to store images in database via form ImageField of model which gets uploaded to media folder that i have created and render the same in template. This is my folder structure- folder structure This is my settings.py file- """ Django…
0
votes
1 answer

Why are some images blurry and others crisp on the same canvas?

In a canvas project I am working on, I have a tile based gird, along with a panel of options. I have gotten everything to work, and all the images are crisp, screen resizing is accounted for, there is no anti-aliasing, etc. Everything (graphics…
Bagel03
  • 725
  • 7
  • 22
0
votes
1 answer

Drop down list of images from model django ModelForm

I have a form where a user can update their profile. I want the user to choose from a drop down list of all the available profile pictures (a gallery of profile pictures from the ProfilePictures Model) which they want to be their profile picture. At…
bruzza42
  • 393
  • 2
  • 13
0
votes
1 answer

PHP check if file_exists without extension then Ajax a div with appropriate media tag (img or video) based on filepath

First posting here. I know inline php is not preferred but I haven't converted all my scripts to echo json_encoded arrays to work in javascript on the client side...so for now, I have inline php. I do not know the extension of the user uploaded…
0
votes
2 answers

How to minimize the image to set on mobile

I using below URL to set the background image: https://postcron.com/en/blog/wp-content/uploads/2014/03/Untitled-design-2.png body { background-image: url("https://postcron.com/en/blog/wp-content/uploads/2014/03/Untitled-design-2.png");…
Abdul Azeez
  • 63
  • 3
  • 9
0
votes
1 answer

How to get position(or coordinates) of particular pixel in a UIImage on touch

On touching on the image I want to get coordinate of that pixel, I tried some code but not getting exact location where the user touches on the image. This my existing code override func touchesBegan(_ touches: Set, with event: UIEvent?)…
0
votes
2 answers

Optimize Image loading for better user experience

I have to make a website that will render multiple images at once like a shirt which will have multiple parts like a collar, sleeves, etc. I have to combine all these images at once and show the image of the whole shirt. How could I do this as fast…
Kamal
  • 23
  • 5