Questions tagged [imageurl]

**imageurl** (image URL) relates to the source URL at which an image is located.

imageurl (image URL) is a property or attribute denoting the source URL at which an image is located. This may be specified typically as either an absolute or relative path. ImageUrl may also relate to getter or setter properties within a framework related to this property/attribute.

261 questions
2
votes
0 answers

Inline tumblr 'post' script preventing external jQuery from triggering

I've implemented a tumblr post button following their docs, and the popup works great. However, I need to pass in an image URL that is dynamically created on the page, rather than hardcoding in an image url. I'm trying to do this with…
tx291
  • 1,251
  • 6
  • 24
  • 42
2
votes
2 answers

How to use setImageURI() in android?

I tried imageView=(ImageView)view.findViewById(R.id.imageView); Uri photoUrl = profile1.getPhotoUrl(); imageView.setImageURI(photoUrl); But i dont see anything. I am getting url when i am printing it Thanks in advance
2
votes
1 answer

iOS FBSDKShareLinkContent Share Post - imageURL not loading on Mobile Data

I am sharing a Facebook post using FBSDKShareKit framework using FBSDKShareLinkContent. I am setting the content's imageURL to load an image for the post to be shared. The problem is, when I am sharing the post while on a mobile internet/3G…
Paul Cham
  • 425
  • 2
  • 14
2
votes
1 answer

How to bind image control directly to a image without saving it?

On button click event i have coded like this to view image directly from file control. protected void btnupload_Click(object sender, EventArgs e) { try { if (photoupload.HasFile) { …
VJain
  • 1,027
  • 7
  • 17
  • 37
1
vote
3 answers

Use of ImageButton without ImageURL to display the image

I need to use the asp control "ImageButton" in order to have access to the properties "OnClick" and "OnClientClick" The problem is i cannot give any ImageURL since my Image is in Database. I used this previously : …
user1173169
1
vote
3 answers

ASP.NET - Converting Text to an Image and Displaying on an ImageButton

I'm creating ImageButtons on an asp.net website. Sometimes, however, an image doesn't exist for the given text and in those cases, rather than display a 'broken image', I want to simply convert the string to an image and display that. I've seen how…
JToland
  • 3,630
  • 12
  • 49
  • 70
1
vote
2 answers

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 url:…
1
vote
1 answer

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 url associated with that image. If I open up the…
1
vote
0 answers

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 pass it to the quill.insertEmbed() method.…
1
vote
1 answer

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": [ { "ID": 1, "CreatedAt": "2022-11-25T00:00:00Z", "UpdatedAt":…
sunny
  • 2,670
  • 5
  • 24
  • 39
1
vote
1 answer

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 can I solve this issue in order to show up my…
Pimpi Rimpà
  • 75
  • 1
  • 8
1
vote
0 answers

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 showing rather it's showing This application has no…
Ukeme Elijah
  • 157
  • 3
  • 13
1
vote
1 answer

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 Retrofit2 + OkHttp3 setup, and am able to get all…
kc_dev
  • 578
  • 1
  • 6
  • 21
1
vote
0 answers

my imageUrl is not functioning, what could be the cause?

import React from "react"; import './menu-item.style.scss'; const MenuItem = ({ title, imageUrl, size }) => (
1
vote
2 answers

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 convert value of type 'String' to specified type 'URL' …
DEUK_YEONG
  • 51
  • 4
1 2
3
17 18