Given the parametric equation $$\big(\;a \cos(\alpha+\theta), \;\;b\sin(\beta+\theta)\;\big)$$ with parameter $\theta$, how can we determine the length of the semimajor and semiminor axes, as well as the angle of tilt of the ellipse?
By experimentation it can be shown that by varying $\alpha, \beta$, the resulting ellipses are tangential to the rectangle defined by $|x|=a, |y|=b$.

See Desmos implementation here.
Let's use vectors. For an ellipse, we know that at the endpoints of the semi-major and semi-minor axes, the vector pointing from the origin to the point is perpedicular to the tangent vector at that point.
If $\vec{v}(\theta)=(x(\theta),y(\theta))$ is the equation of the ellipse, then $\vec{v}'(\theta)=(x'(\theta),y'(\theta))$ specifies the direction of the tangent vector. Given $\vec{v}(\theta)=(a \cos(\alpha + \theta),b \sin(\beta + \theta))$, we deduce that $\vec{v}(\theta)=(-a \sin(\alpha + \theta),b \cos(\beta + \theta))$. Using our conclusions from above, we find that we must have $$\vec{v} \cdot \vec{v}' = 0 \implies \frac{a^2}{b^2} = \frac{\sin(\alpha + \theta)\cos(\alpha + \theta)}{\sin(\beta + \theta)\cos(\beta + \theta)} = \frac{\sin(2(\alpha + \theta))}{\sin(2(\beta + \theta))}$$
Solve for the $\theta$ that makes this relation true to find the "tilt" angle (I assume you define it as the angle between the semi-major axis vector of the new ellipse and the $x$-axis).* You will get multiple solutions between $0$ and $2 \pi$ (call these $s_i$). The length of the semi-major axis (correspondingly semi-minor axis) is then the maximum (correspondingly minimum) of $f(s_i) = a^2 \cos^2(\alpha + \theta) + b^2 \sin^2(\beta + \theta)$.
$*$ I'm not aware of any algebraic way to solve this equation. I think it's pretty similar to solving an equation like $\sin x = x$.