How to reuse an image that is comprimised already
Unanswered
Waterman posted this in #help-forum
WatermanOP
If I have an image that is being loaded from a database,
Then I want to display that image first as this:
<Image width={500} height={500} />
but then I want to display it as
<Image width={1000} height={1000} />
then it has to load a make a new url for that image, when displaying it,
can I get around this by just changing both to 1000? or how can I reuse the same url so it doesn't have to load two times? because I don't want an effect where the image is not shown and then randomly pops up?
Then I want to display that image first as this:
<Image width={500} height={500} />
but then I want to display it as
<Image width={1000} height={1000} />
then it has to load a make a new url for that image, when displaying it,
can I get around this by just changing both to 1000? or how can I reuse the same url so it doesn't have to load two times? because I don't want an effect where the image is not shown and then randomly pops up?
2 Replies
WatermanOP
Any ideas?
if there is any other method that works I could use that too