259 questions
0
votes
0
answers
103
views
How to dynamically display Base64 client logos on all Power BI tabs without manual placement?
Problem:
I need to display client logos stored as Base64 strings in a SQL table across all tabs of a Power BI report. Manual placement on each tab is impractical. The logo must dynamically change ...
1
vote
1
answer
387
views
Unable to load Image using coil3 composed: AsyncImage
I'm learning Composed and tried to load an image from the internet using coil3.
@Composable
fun Test() {
val imageUrl = "https://www.gstatic.com/webp/gallery/4.jpg"
val imageRequest =...
0
votes
1
answer
140
views
Why does using image_url in one part of my Shopify Liquid code cause a 404 error, but not in others?
I'm building a custom section in Shopify that includes an image modal for displaying product images. The issue I'm facing is that when I use image_url for the src attribute in one part of my code, I ...
0
votes
1
answer
39
views
Redirect without www to an image
Here are that i have in .htaccess:
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteCond %{REQUEST_URI} !^/images/.*$
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
But this not work for me.
I want to ...
0
votes
1
answer
854
views
How to get an image's base64 data in postman
The question
How do I get base64 data from an online image within postman?
Context
I'm doing a migration within postman. One part of this is migrating embedded images within messages. The embedded ...
0
votes
1
answer
2k
views
Having trouble displaying KFImage with URL in SwiftUI - Kingfisher
I'm currently working on a SwiftUI project and using the Kingfisher library to display images. However, I'm facing an issue with showing an image using the KFImage view with a URL.
Here's a simplified ...
1
vote
2
answers
94
views
Unable to retrieve data field value from Firestore collection
I try to retrieve the imageLink saved in a Firestore collection of userProfile, but I can't retrieve the data and it displays the following errors. Does anyone know why this happens and how to fix it?
...
1
vote
1
answer
1k
views
How to generate URL for a PNG file in repository
I am using the Stable Diffusion API for image generation, one of whose parameters is an image I will have to pass in as an URL string.
For example, if I want to use the image of a monkey, I can use
...
3
votes
1
answer
81
views
Using negative lookahead in RegExp to correctly match image URLs wrapped in [img] tags?
Negative lookahead to match itself in RegExp
I want to use a RegExp to match an image url that will have two cases:
The first case it is a normal image URL, ending with .png and may contain some query ...
1
vote
1
answer
663
views
How can I scrape an embedded image url from xlsx spreadsheet
I have Excel spreadsheets that have an image per row, scraping the image using this example works. However what I want to do instead of scraping the image of the spreadsheet is I want to extract the ...
-1
votes
1
answer
126
views
ImageUrl: What is the options `-rw` in some image link
I have a problem when load image with this url: "https://lh3.googleusercontent.com/sZl-o9TGNYXucrPNHesxaMLXajhcPYqw43zojzHJ-y1yYYeQaNtJMrPUQImKgak3paKOMbEm0Av0e5bKG8_z31m1xVGN8J3x-...
0
votes
0
answers
657
views
Zip all image url in file folder by using jsZip and file-saver in react
I am trying to Generating a zip folder using this tutorial and in my component i have added it as
const siteImageData = [
{ fileUrl: 'https://saseuwdevattachmentapi.blob.core.windows.net/generic-...
0
votes
1
answer
298
views
flutter firebase: Update a field with image url
How do I update a field in a collection with image url?
I can update with other strings but the image url doesn't seem to work.
I first upload this image imageUrl in a different subcollection called &...
0
votes
1
answer
52
views
Flutter firebase: Upload ImageUrl to firebaseDatabase
I'm trying to to make a user send pic to firebase. The image is stored in the firestore alright. But I don't seem to get the downloaded imageUrl to the database. Anytime it happens, the field (the ...
1
vote
0
answers
2k
views
Inserting image url in quill only displays the image icon and not the image itself
I am using quill in Next.js and I have ran into a problem. Instead of using the default base64 encoding for images, I have added a custom handler that creates an object url for the images and I later ...
1
vote
1
answer
770
views
get image from folder with imageurl in database and show that in my browser with echo in golang
I get my data from database and they show in browser or software like postman the same as this
/ 20221125143847
// http://localhost:3000/api/v1/datesmain/read
{
"alldates": [
{
"...
0
votes
1
answer
86
views
I am getting an error while uploading image URL to firebase database from the firebase storage
I got this in firebase:
private fun uploadToFireBase(imageUri: Uri) {
binding.progressBar.visibility = View.VISIBLE
val fileRef : StorageReference = storageReference.child("${System....
0
votes
2
answers
94
views
I cant get Image URL for JSON file
I have some images on my computer, I want them to use in JSON files Now I need the image URL. How can I get it?
1
vote
1
answer
1k
views
Add http to a missing url in flutter
Is there a way to add https extension hidden by CDN inside mapping in flutter?
As you can see in the picture below I'd need to add as link inside my model JSON but the https is hidden by the CDN.
How ...
2
votes
0
answers
2k
views
how to display image in a browser in spring boot using the image url
I'm saving images to the database using spring boot, the image url is also displayed on postman when I send it but the issue is that when I copy the image url link to the browser, the image is not ...
0
votes
0
answers
323
views
Image URL is giving blank page in Laravel
EmployeeController
<?php
namespace App\Http\Controllers;
use App\Http\Resources\EmployeeListResource;
use App\Talent\Employee\Requests\EmployeeCreateRequest;
use App\Talent\Employee\...
0
votes
2
answers
5k
views
how to get image url attribute in django
i have a problem with getting image url in django template.
In views file i am getting "product__stock_keeping_unit__image" which is related products' image as below.
data = models.Product....
0
votes
1
answer
582
views
Rendering multiple images using Props in React.js
I am trying to render images in my local system to a website using react components. In the "index.js" file I am creating 4 different components with attributes. One of the attributes is the ...
1
vote
1
answer
5k
views
AsyncImage not loading : Coil-Jetpack Compose
I have a Jetpack Compose app that makes a call to the Picsum API (endpoint: https://picsum.photos/v2/list) and tries to display them in a LazyList using the Coil library (2.1.0). I have the typical ...
1
vote
2
answers
107
views
Extracting the image from an URL
I want to extract the image through the URL in the code, using URLImage. I tried the following:
import URLImage
let url:URL = userProfileImg //<<<<< URL ErrorMessage: Cannot ...
0
votes
1
answer
2k
views
How to display Image in App with flutter and firebase using URL as String in Firestore
we have no clue how to display an image in a flutter app via an URL from Firebase Firestore.
Here is a Picture of our database with three fields one of which is for a picture. In that we placed the ...
0
votes
0
answers
274
views
How can we change data from base64 to localhost url?
Firstly There is a yield that returns like this.
<figure class=\"image\"><img src=\"data:image/png;base64,iVBORw0KGg //F12 network data
I want this data to register as ...
1
vote
2
answers
869
views
Reading URL image content from HTTPResponse in Python
I have an image URL in the form of a shareable Google Drive link that I would like to access in my Python script. Below is what I have been trying:
from PIL import Image
import requests
img = Image....
1
vote
3
answers
9k
views
How to read an image from a URL in Colab?
I have seen so many different threads about this topic but none of their solutions seems to work for me. I've tried several ways of reading an image from my Drive into Colab using its URL, with no ...
0
votes
1
answer
826
views
Can't scrape an image url from Zara
I am trying to scrape an image url from Zara, but the only think I get back is the url of the transparent background.
This is the link I'm trying to scrape: https://static.zara.net/photos///2022/V/0/1/...
0
votes
1
answer
594
views
How do I ensure that the url of my image in flutter doesn't show up on the screen instead of the image?
I am new to flutter. I was trying to get the pictures of some plants to show up beside the name of the specific plant however I was getting the url instead, is there any possible way that i can fix ...
0
votes
1
answer
1k
views
ASP.NET Core 3.1 Image Url Error Code 302 Redirection
ASP.NET Core 3.1 Website hosted on Windows server with IIS using https.
When trying to access images in a particular folder, the image fails to display and the request redirects to sign-in page.
...
0
votes
2
answers
259
views
Is there a possibility to get the image from internet without calling API in swift?
I got the (data , response , error) already in completion handler from the first call to the api. And have to get the image from the links nested in the json object(which is parsed from the obtained ...
0
votes
1
answer
63
views
Python web scraper, with BeautifulSoup I am having problem with my link , the link is now going to headline story but redirecting to the archives page
The link is redirecting me to an archives page with other top stories https://www.coindesk.com/news/babel-finance-bets-on-longtime-fintech-hand-to-help-navigate-regulatory-landscape. The tag news on ...
1
vote
1
answer
1k
views
Getting website image URLs automatically using Excel VBA
I have several websites for property listings that I want to get images from and bring them into excel cells automatically using VBA, but I guess I first need to fetch all the image URLs whereby the ...
0
votes
1
answer
44
views
(others too)picasso is not working with simple image display using URL
dependency=implementation "com.squareup.picasso:picasso:2.4.0"
String url1="https://www.google.com/search?
ImageView image;
@Override
protected void onCreate(Bundle ...
1
vote
0
answers
351
views
App crashed when using setImageURI function in ImageView
I am opening the gallery and getting the URI of an image when it is selected. Then I show the picture using setImageURI like this.
override fun onActivityResult(requestCode: Int, resultCode: Int, data:...
0
votes
2
answers
2k
views
How can a convert an image into a url?
I am creating a web app, in which I receive a image file from the user then have to store it in my Firebase Realtime Database and display it in Html. Since Realtime Database doesn't support files I ...
0
votes
1
answer
142
views
Access imagebutton src in postback
Environment: Microsoft Visual Studio 2019 Community, ASP.NET v4.8 web application project using VB.NET
Problem: I have an asp imagebutton which is used to indicate a status by changing the image each ...
0
votes
1
answer
488
views
How to save image server url in database + shared windows hosting + asp.net core
I have hosted in a shared windows server, I want to save images on the server, and update its path in the database. When I update the path in the database it is looking like something mentioned below,
...
1
vote
1
answer
133
views
How to make image link for my website like this https://website.com/image.png in gatsby.config?
I want to add image url in meta tag for SEO. But how can I create image link to add in meta tag? I am using gatsby. I have src/img/img1.png image and now I want to create image URLs like this
https://...
0
votes
0
answers
611
views
Download Image from URI And Store it in the Folder
I'm getting a list from the service side with 10 image Uris. I was showing all those images in the Fragment Pages using Glide Library, but glide is taking time to load the image and show it in the UI. ...
0
votes
2
answers
1k
views
Why my data-binding annotation(@BindingAdapter("imageURL")) doesn't work?
I've written my custom recyclerView and have got a problem. But when I wrote an annotation to mark a setter for my imageView I got a compilation error.
Here are the source code and errors.
Error:
...
0
votes
1
answer
393
views
How to show the image downloaded fom the firebase storage always in a flutter application statically,can be opened and viewed on a click
How to show the image downloaded from the firebase storage always in a flutter application statically, can be opened and viewed on a click.
I have already uploaded an image from camera and gallery ...
2
votes
0
answers
45
views
Store image url to database using retrofit
Is it possible to send a url in android to database using retrofit post request @Body method?
I am trying to build an app that will upload multiple images to amazon s3 and after will get the image url ...
0
votes
1
answer
66
views
How to call childByAutoId once in a loop? (Swift) [duplicate]
Since I am uploading multiple images to firebase with one click I created a loop that goes until all the images are uploaded. Once I have uploaded the images to storage I want to save the urls in ...
1
vote
2
answers
1k
views
scrape images from a particular e-commerce website's link
I am scraping a e-commerce website for experience. I am currently facing a problem scraping images of a product.
I have scraped the html codes for all present images of a product but can't extract the ...
1
vote
1
answer
74
views
Base64 string src not working on Phonegap
I am writing a mobile app with Phonegap. I have to change an image when the user selects a new one from the gallery. Then I send it to the server in base64. The server receives my image correctly and ...
-1
votes
1
answer
3k
views
Fetching an image from Reddit? JavaScript/React (no PRAW)
I'm trying to get images from Reddit based on my search parameters. I'm fetching fine and am able to retrieve my data, but the url I receive in data.preview.images[0].source.url (Reddit really buries ...
2
votes
1
answer
1k
views
Background image from Google Drive in plotly
I am creating a Google colab with some data visualisations of a heatmaps over an image. I've been using the code similar to the one found in the plotly website.
It works fine with the link from the ...