フォルダ内の画像のファイルPATHを取得する必要がありpub/static/[VENDOR_THEME]ます。
現在、ヘルパーを使用してこれを行うことができます:
public function __construct(
    \Magento\Framework\App\Helper\Context $context,
    \Magento\Framework\View\Asset\Repository $assetRepository,
    \Magento\Framework\App\Filesystem\DirectoryList $directoryList
) {
    parent::__construct($context);
    $this->_assetRepo = $assetRepository;
    $this->_directoryList = $directoryList;
}
public function getImagePath($image)
{
    return $this->_directoryList->getPath(DirectoryList::STATIC_VIEW) . 
        '/' . 
        $this->_assetRepo->getStaticViewFileContext()->getPath() . 
        '/' . 
        $image;
}これを処理する組み込みのMagento関数があるので、独自のヘルパーを作成する必要はありませんか?
