Nitesh Kuyate
Nitesh Kuyate

Reputation: 165

Add/remove image programmatically to product Magento2

I am facing problem to add/remove image to product programmatically.

Upvotes: 3

Views: 18263

Answers (1)

Dattatray Yadav
Dattatray Yadav

Reputation: 116

Use following code to add/remove image from product in Magento2.

// Instance of object manager
$objectManager = \Magento\Framework\App\ObjectManager::getInstance(); 
*Remove Images From Product*/
$productId = ; // Id of product
$product = $objectManager->create('Magento\Catalog\Model\Product')->load($productId);
$productRepository = $objectManager->create('Magento\Catalog\Api\ProductRepositoryInterface');
$existingMediaGalleryEntries = $product->getMediaGalleryEntries();
foreach ($existingMediaGalleryEntries as $key => $entry) {
    unset($existingMediaGalleryEntries[$key]);
}
$product->setMediaGalleryEntries($existingMediaGalleryEntries);
$productRepository->save($product);
/*Add Images To The Product*/
$imagePath = "sample.png"; // path of the image
$product->addImageToMediaGallery($imagePath, array('image', 'small_image', 'thumbnail'), false, false);
$product->save();

Upvotes: 10

Related Questions