🇮🇳India garglalit0
this will work in drupal 9 and 10 to get the image url programitically
$image = $node->get('field_image_name')->getValue()[0]['target_id'];
$image = \Drupal::entityTypeManager()->getStorage('file')->load($image)->getFileUri();
$image_url = \Drupal::service('file_url_generator')->generateAbsoluteString($image);
💬 | Media entity image | How to get Media entity image (Entity Reference Field) URL in TWIG theme
🇮🇳India garglalit0
this will work in drupal 9 too get the image url
$image = $node->get('field_image_name')->getValue()[0]['target_id'];
$image = \Drupal::entityTypeManager()->getStorage('file')->load($image)->getFileUri();
$image_url = \Drupal::service('file_url_generator')->generateAbsoluteString($image);