5

import an Image from WEB

This procedure allows you to download an image from a public website and display it in an Image field:

Usually, I go through the following steps:

  1. Image Field

  2. text field labelled in this example coverimage

  3. a field formula

in the text field for example you can retrieve information from an API request:

https://i.discogs.com/-yeZis2w3l9rFx26F3KOu-oKnkZdPRsNEFjeX5aeriY/rs:fit/g:sm/q:90/h:600/w:600/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9SLTc5NzE5/MTgtMTUwMzI1NDYx/Mi0zNjE0LmpwZWc.jpeg

and now the field formula:

let xurl := coverimage;
html("<script>
  var currentField;
  var object = document.querySelectorAll('.editor-file-file');
  object.forEach(function (obj) {
    obj.style.backgroundImage = 'url(" +
xurl +
")';
    obj.style.backgroundSize = 'contain';
    obj.style.backgroundPosition = 'center center';
    obj.style.backgroundRepeat = 'no-repeat';
  });
</script>")

 

This formula defines a variable called xurl, which is assigned the value of coverimage. It then generates an HTML script that uses JavaScript to modify the styling of certain elements in the document. Specifically, it selects all elements with the class name .editor-file-file and sets their backgroundImage property to the value of xurl (which represents the URL of a cover image). It also sets other style properties such as backgroundSizebackgroundPosition, and backgroundRepeat to define how the background image should be displayed.

31 replies

null
    • Alan_Cooke
    • 8 mths ago
    • Reported - view

    Thanks for this - looking forward to trying this out.

    • Rafael Sanchis
    • Rafael_Sanchis
    • 8 mths ago
    • Reported - view
    • Haavard_Hjorteland
    • 8 mths ago
    • Reported - view

    Hi, this was brilliant.

    Do you know if it is possible to have more than one Image Field in the same record/view? If I add anothe Image Field the image is duplicated into both. I can's see anything in the FX script that refere to the name of the Image field. I would like to try several Image fields using several URL text fields/FX scipts, like a photo album.

    regards,

    Håvard

      • Rafael Sanchis
      • Rafael_Sanchis
      • 8 mths ago
      • Reported - view

       

      The image is duplicated.

    • francescostefanello
    • 8 mths ago
    • Reported - view

    the image is duplicated because all the elements image in the table have the same .editor-file-file class.

    • Sean
    • 8 mths ago
    • Reported - view

    As  comments, you need a separate Text or URL field for each Image field. I don't have the time to test if I one can use a loop to iterate through the Text/URL fields and then assign the image URL to the Image fields. This code works and you can modify it to match how many Text/URL and Image fields you have.

    html("
    <script>
        var object = document.querySelectorAll('.component.editor.editor-file');
        object[0].children[2].style.backgroundImage = 'url(" + coverimage1 + ")';
        object[1].children[2].style.backgroundImage = 'url(" + coverimage2 + ")';
    </script>
    ")
    
      • Rafael Sanchis
      • Rafael_Sanchis
      • 8 mths ago
      • Reported - view

       

      • Sean
      • 8 mths ago
      • Reported - view

       Just FYI, you need only one Formula field with that formula.

      • Rafael Sanchis
      • Rafael_Sanchis
      • 8 mths ago
      • Reported - view

       Yes  Sean I forgot deleted. 👍

    • Haavard_Hjorteland
    • 8 mths ago
    • Reported - view

    Thanks, this was cool. I have made a Photoalbum where I get the links from my Onedrive on the web. It seems like the images is dowloaded on the fly, and dont use up space om my Ninox account.

    I have one URL field using Ondrive share link, so i can click and popup in full screen. And for the actual Image URLS's I use Ondrive "Embed/Build in" to website"

    • Sean
    • 8 mths ago
    • Reported - view

    Thank you Francesco for sharing this.

    I did work out two way to iterate through the URLs. One is to use a multiline text field to store all of the URLs separated by a newline, but I'm not too fond of it. The other is to use a Table and it allows you to filter the images. It also hides any Image fields that aren't used.

     

    I attached the database

      • francescostefanello
      • 8 mths ago
      • Reported - view

       Thanks to you for taking inspiration from one of my ideas and perfecting it.

      • Sean
      • 8 mths ago
      • Reported - view

       🙏  I don't believe it would have ever occurred to me to manipulate images this way if you hadn't shared your idea.

    • Sean
    • 8 mths ago
    • Reported - view
     said:
    It seems like the images is dowloaded on the fly, and dont use up space om my Ninox account.

     Yes, I believe the files are stored the browser's cache. It works in the Mac app as well.

      • Rafael Sanchis
      • Rafael_Sanchis
      • 8 mths ago
      • Reported - view

      On Android Tablet works perfect too.

      • Sean
      • 8 mths ago
      • Reported - view

       😎 Thank you for letting me know.

    • Alan_Cooke
    • 7 mths ago
    • Reported - view

    Hi all and  - I am using this code for thumbnail capture from a website to display it both in my database and Mobile App - thanks so much for this.  But - always is one right :-)?

    I cannot use the image field in table view - no image displays at all.  I have tried using a formula field as well - is there anyway it is possible to show the image when in table view (all)?

    The two blank cells are using the URL link to display in form view which is perfect but here they are blank.  The other two are dropped in images as per the usual method.

    The topmost row is the form view item which shows the plug but no thumbnail in the sheet view

      • francescostefanello
      • 7 mths ago
      • Reported - view

       I saw that too, but it is my opinion that the thumbnail display is irretrievably lost, since the image is no longer residing on the Ninox server.

      The advantage of such a solution lies in saving physical space for your data and in case there are API requests in the automation of data coming from the Web.

      Sorry for my English

      • Alan_Cooke
      • 7 mths ago
      • Reported - view

       Thank you - your English is just fine.  I wonder if the maestro  could work some magic ;-)

      • Rafael Sanchis
      • Rafael_Sanchis
      • 7 mths ago
      • Reported - view

       They also do not show on Cards and Kanvas

      • Alan_Cooke
      • 7 mths ago
      • Reported - view

      I have worked out that even though the Image field (eg:  Thumbnail) displays the field/formula url to the image one can also drag and drop an image onto the field.  So what I have done is load the image url and then screen capture the image and drag/drop onto the thumbnail image field.

      • francescostefanello
      • 6 mths ago
      • Reported - view

       

      Alan, instead of using the relationship I created a formula that allows me to display through a CSS formatting all the images I want. The link to the relative records are not lost because new links are created.

      So in this way you can have the images immatures and the connection to records (in blue color in the example) as well

      • Rafael Sanchis
      • Rafael_Sanchis
      • 6 mths ago
      • Reported - view

       Great francesco can yo Shane the formula ?

      • francescostefanello
      • 6 mths ago
      • Reported - view

      Rafael 

       

      https://forum.ninox.com/t/83yhcrc/split-function-help#60yhcbg

      this forum show how to create a link to another record inside a HTML script.

       

      here is a HTML example for the image and the link to the record:

      let xArtistID := 'Artist ID';
      let Masters := ((select Master where 'Artist ID' = xArtistID and Type = 1) order by 'Year Released');
      for x in Masters do

      html(---
              <img src="{ x.coverimage }" style="width: 20px; height: 15px; margin-right: 5px;">
              <span onclick="ui.openRecord('{ x }')"; style="color: #1E90FF; cursor: pointer; text-decoration: underline;">{ x.'Master Release Number' } </span>

      ---)

      where the cover image is the link for the image

      • Rafael Sanchis
      • Rafael_Sanchis
      • 6 mths ago
      • Reported - view

       

      Hi again francesco

      Where the link is something like this. ?

      https://e.snmc.io/i/fullres/w/204c7076ac98df6ee2df9474704ad620/2499073

Content aside

  • 5 Likes
  • 6 mths agoLast active
  • 31Replies
  • 585Views
  • 7 Following