DioxusLabs/dioxus

Auto width/height for manganis images

Ouverte

#5 458 ouverte le 7 avr. 2026

 (0 commentaire) (0 réaction) (0 personne assignée)Rust (1 655 forks)batch import
enhancementgood first issuemanganis

Métriques du dépôt

Stars
 (36 038 étoiles)
Métriques de merge PR
 (Merge moyen 16j 13h) (9 PRs mergées en 30 j)

Description

Feature Request

You can currently not set the image size for images or set both the width and height. You should be able to set either the width or height and have the other derived from the aspect ratio of the image

Implement Suggestion

Allow with_width or with_height and derive the other dimension

// Resize the image at compile time to make the assets smaller
pub const RESIZED_PNG_ASSET: Asset =
    asset!("/assets/image.png", AssetOptions::image().with_width(52));

or

// Resize the image at compile time to make the assets smaller
pub const RESIZED_PNG_ASSET: Asset =
    asset!("/assets/image.png", AssetOptions::image().with_height(52));

Guide contributeur