Logan King
Logan King
```rust use macroquad::prelude::*; #[macroquad::main("test")] async fn main() { let texture1 = load_texture("./test.png").await.unwrap(); let texture2 = texture1.clone(); texture1.delete(); loop{ clear_background(GRAY); let params = DrawTextureParams { dest_size: Some(vec2(256., 256.)), source: None, rotation:...
I am also getting the crash error ``Killed`` as an output when trying to convert the [TIFF 40K](https://esahubble.org/media/archives/images/publicationtiff40k/heic1502a.tif). I'm not sure if that is the same issue. The [TIFF 10K](https://esahubble.org/media/archives/images/publicationtiff10k/heic1502a.tif)...
The 4.3 GB full resolution ``.psb`` image has ``69536 x 22230`` pixels. My system has 16GB of RAM. - Trying to convert the 4.3 GB ``.psb`` to a ``.tiff`` fails...
@snibgo ``` magick convert androm.psb androm.png -limit memory 1MB -limit map 1MB ``` Still returns ``Aborted (core dumped)`` after one minute.
@fmw42 > What do you get from > > `magick -list resource` ``` Resource limits: Width: 461.169PP Height: 461.169PP Area: 33.4278GP List length: unlimited Memory: 15.566GiB Map: 31.1321GiB Disk: unlimited...
Per https://imagemagick.org/script/security-policy.php > If any one image has a width or height that exceeds 8192 pixels or if an image sequence exceeds 32 frames, an exception is thrown and processing...
@snibgo > ``` > magick -limit memory 1MB -limit map 1MB androm.psb androm.png > ``` That makes sense. I find it a little intuitive that adding flags causes that command...
@snibgo my file explorer (unprivileged) lets me manually copy a ``4.6GB`` file to ``/tmp``. and ``cp androm.psb /tmp`` works as well. Should I try a larger file, or do you...
``cp large_file.txt /tmp`` still worked fine. But moving a ``57.3`` GB file with my file explorer fails with the error  57.3 - 45.4 = 11.9 So it looks like...
I used ``mount -o remount,size=25G /tmp/`` to increase ``/tmp``'s size limit to ``25GB``. And upon attempting conversion with, ``` magick -limit memory 1MB -limit map 1MB androm.psb androm.png ``` The...