Maison > Questions et réponses > le corps du texte
J'ai un composant de téléchargement de fichiers et je dois y ajouter un validateur de taille
Voici le code du validateur
export const filesDimensionValidator = (maxWidth: number, maxHeight: number): ValidatorFn => (control: AbstractControl): ValidationErrors | null => { const value: IUploadFileControl = control.value; if (value == null) { return null; } for (const x of value.allFiles) { if (x.size > maxFileSize) { return { file_max_size: VALIDATION_LABEL_ATTACHMENT_MAX_SIZE }; } } return null; };
Si for boucle x
参数具有 File
tapez.
Seulement des images ici.
Comment obtenir la largeur et la hauteur de l'image dans ce fichier ?
P粉2376476452023-09-11 00:14:49
Créez une image en utilisant Image
puis obtenez les dimensions souhaitées.
Vous pouvez utiliser file.type
来验证x
Est-ce une image :
Essayez ceci :
// add mime type check if (x?.type.includes('image/')) { const url = URL.createObjectURL(x); const img = new Image(); img.onload = function () { console.log(img.width, img.height); URL.revokeObjectURL(img.src); }; img.src = url; }
Modifier
Obtenez la taille simultanément :
// pass file to the method and hold execution console.log(await this.getDimensions(x)); // method that gets and return dimensions from a file getDimensions(x: File) : Promise<{width:number, height:number}> { return new Promise((resolve, reject) => { const url = URL.createObjectURL(x); const img = new Image(); img.onload = () => { URL.revokeObjectURL(img.src); resolve({ width: img.width, height: img.height }); }; img.src = url; }); }