All Questions
Tagged with image-upload angular
33 questions
1
vote
0
answers
53
views
Angular The file upload screen nothing happens
The file upload screen appears, but when I click upload, nothing happens.
A pop-up window should appear saying "Are you sure?"
As I show in this video, nothing happens.
Angular Side :
file-...
0
votes
1
answer
392
views
Jodit-angular editor uploads screenshots and customizes the file name with serial number
Paste a screenshot on the jodit editor, I can upload the screenshot through a customized url, but currently I cannot customize the file name of these screenshots as image+serial number.
I tried adding ...
0
votes
1
answer
2k
views
image file upload in angular
I have image file upload input with preview for showing uploaded image file. There I need to handle some conditions like follow:
show default image if image file is not selected and database doesn't ...
3
votes
1
answer
2k
views
How to display images from strapi wysiwyg markdown editor to angular frontend
So I figured I'll answer this question as I had searched for a while and found nothing.
Scenario (Angular frontend and Strapi backend):
I have blog posts that contain text and images, and I am trying ...
0
votes
1
answer
3k
views
Failed to load resource: the server responded with a status of 500 (Internal Server Error) this error occurs when I try to upload an image
I am new to MEAN development. I have two input fields and one field with a photo upload button. While I managed to display uploaded photo on the screen, I have a problem uploading it on server. Can ...
0
votes
0
answers
268
views
Running my file change event listener results in TypeError: Failed to execute 'readAsArrayBuffer' on 'FileReader': parameter 1 is not of type 'Blob'
I am trying to upload multiple images in angular. Upon running my code on change on the file input element i get the error "Failed to execute 'readAsArrayBuffer' on 'FileReader': parameter 1 is ...
1
vote
0
answers
777
views
How can i add image insert via URL to ckeditor document editor in Angular?
I was looking in ckeditor documentation and I couldn't find the solution to add insert image via url to an existing document editor build, I managed to successfully integrate the ckeditor (I choose ...
2
votes
1
answer
763
views
paste an image (ctrl+v) to ngx-dropzone
Is there an option to paste an image into the drop zone of ngx-dropzone angular module ?
can I add (paste) event to it somehow?
ngx-dropzone
<div class="custom-dropzone" ngx-...
0
votes
1
answer
864
views
Angular CKEditor Image Upload
Hello In angular app I am using CKEditor. For image upload I use code below
Demo
export class UploadAdapter {
private loader;
constructor(loader: any) {
this.loader = loader;
}
...
0
votes
1
answer
803
views
ContentType for HttpHeaders when uploading File in FormData
I have an Angular Single Page Application which calls a .NET Core API.
The default set up creates HttpHeaders to pass a jwt token to the API and sets the content-type to application/json; charset=...
0
votes
1
answer
244
views
How to send reduced/optimised images from node server to Angular client (but save original quality to database)
I'm working on a project which requires an image database. Many of the images are rather larger than they need to be for 90% of the use cases of the application, however, there are cases where I need ...
0
votes
0
answers
263
views
unable to upload an Image to firebase storage from nativescript -angular
I am following the template given at https://github.com/NativeScript/nativescript-app-templates/tree/master/packages/template-master-detail-ng for android.
All functionality is working fine with my ...
1
vote
0
answers
2k
views
how to change cropped image background color in ngx-awesome-uploader
How can i change cropped image background color?
i tried send "fillColor" parameter with cropperOptions, but didn't work.
this.cropperOptions = {
dragMode: 'crop',
aspectRatio: 1.5,
...
-1
votes
1
answer
4k
views
send an Image file in the body of a http post request in Angular 8
This is the object I try to add in the body
firebaseId: "gSECLs1cH9epvlIXX85yx820Tvt2"
Instructions: undefined
category: "votes"
Imageone: File {name: "21.jpg", lastModified: 1524755773798, ...
2
votes
1
answer
5k
views
Angular 8, upload (using post multipart/form-data) the result of FileReader.readAsDataURL
My use case:
A user opens an image file (using input type="file").
The image is then displayed on screen, and stored in the local storage
At some later point (days) the user clicks a button, and ...