I use a lot of screenshots in my documents (technical specifications of a software application). They all differ in dimensions, sometimes in resolution (72/144dpi), but I need them to have a consistent scale (the larger images are scaled down to fit, so that’s ok).
Often, I need to trim them as well.
As far as I understand, the scale in #image(width: 30%, …) refers to the size of the container, similar to LaTeX’s [width = 0.3\linewidth] option. But that’s not what I need.
Any suggestions to get this functionality would be more than welcome!
I’m not exactly sure what this LaTeX command does, but if you want to scale an image based on its size, you could measure the image’s dimensions and use the scaled measured size as the image’s width/height.
Ah, nice. So I guess I can make a function with optional arguments that combines the clipping and scaling (and rotation if needed) and combines all this.
Unfortunately, I can’t make a function that combines the scaling and trimming.
Let’s say I want to get this (let’s assume that the options are mutually exclusive).
To do this, I would have to get the original dimensions of the image (without scaling).
Then trim as specified.
Then scale the trimmed image, either by the given scale, either by calculating the scale as (given size/trimmed size)
However, I can’t seem to get the original dimensions of image?