All Questions
7 questions
0
votes
2
answers
1k
views
ReactJS: Image display not working correctly
So I have this scenario where I am uploading the images. On front end, its React Js and back end in Node Js. Images get uploaded fine but when I have to display them on front end it doesn't work.
I am ...
-1
votes
1
answer
3k
views
How to convert request file to base64 string in nodejs
I have file coming in request.file object. If I console.log(request.file)
It prints
{
fieldname: 'file',
originalname: 'Screenshot from 2021-06-23 18-34-25.png',
encoding: '7bit',
mimetype: '...
0
votes
0
answers
279
views
How can i upload images array and thumbnail image both at once using Angular7 and node.js?
I have a server-side based on node.js(express) in which i have an api for adding BookingItem in which i am getting images array of booked item.
I am doing in server side in bookingItem.route.js like ...
0
votes
1
answer
1k
views
unable to upload image to amazon s3 from froala WSIWYG editor
I am using froala editor which also has image upload to s3, I followed the steps as mentioned in the docs here
CORS configuration on s3 bucket
<?xml version="1.0" encoding="UTF-8"?>
<...
-1
votes
1
answer
838
views
shutterstock: API for uploading images [closed]
How to upload images to shutterstock using javascript/NodeJs. I have gone through the following API but couldn't find the particular API.
https://github.com/silas/node-shutterstock#v1.customer....
2
votes
2
answers
6k
views
How to delete uploaded image in Javascript?
I'm working on my first web app. It allows users to post events happening in the area, similar to eventbrite. I am using NodeJS, Express, Mongo.
I created a form that allows users to input event ...
2
votes
1
answer
748
views
Resize image in node js
I want to resize my images before I upload them to s3 (amazon).
I try to use 'resizeImg' function but its dosent work the image upload in standart size, and not in the new size.
my code write in node ...