Questions tagged [imageuri]

6 questions
4
votes
1 answer

IPFS uri format: https://ipfs.io/ipfs/ vs. ipfs://?

Here is my test tokenURI.json file w/ the imageURI I pass to my token contract.setTokenURI(): { "attributes": [ { "trait_type": "location", "value": "West Awesomeville" }, { "display_type": "date", "trait_type":…
JDOaktown
  • 4,262
  • 7
  • 37
  • 52
2
votes
1 answer

R: Add multiple images to dataframe/datatable?

I'm trying to add several images to a dataframe in R to reproduce in R Shiny as DT::dataTableOutput. The desired output would look something like: Icon Food grapes marrow I fount this question Adding an image to a datatable in R…
Seni
  • 93
  • 1
  • 8
0
votes
0 answers

I am getting error illigalargument exception while sending image uri to another screen composable using navigation

when fetching image from external storage and showing in home screen then sending that imageUri to show in another image detail screen, but the app crashes when I click on button to show the image on detail screen, This error: FATAL EXCEPTION:…
0
votes
1 answer

How do I take an image uri from and use it in my file?

My returns the following. {image && } {!image && ( …
Burt Kim
  • 13
  • 3
0
votes
2 answers

How to save image using return Uri?

I am using an image background remover library from GitHub. My image is not being saved in storage after done with removing background. @Override protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) { …
Fawad
  • 21
  • 4
0
votes
0 answers

Activity Result API: Error:java.lang.OutOfMemoryError when setting image URI from gallery

I'm using Activity Result API to get multiple contents from gallery (since startActivityForResult() is deprecated). MainActivity.java LinearLayout ll; Button btn; @Override protected void onCreate(Bundle savedInstanceState) { …