lucid-fox / social-magick

An Open Graph Image generator plugin for Joomla 3 and 4
GNU General Public License v3.0
15 stars 1 forks source link

Implement Nudge from Bottom / Right #24

Open nikosdion opened 3 years ago

nikosdion commented 3 years ago

The nudge values are currently only ever set from the Top or Left edge.

We could have a dropdown to select Top/Bottom and Left/Right, changing the nudge labels accordingly.

The implementation is fairly straightforward.

Nudge from Bottom can be converted to a nudge from top value by doing image height - text box height - nudge from bottom.

Nudge from Right can be converted to a nudge from left value by doing image width - text box width - nudge from right.

This way we can leave our implementations as they are, adding the minimal code required to convert the bottom/right nudge values into their equivalent top/left values.