I see how to use Image Transforms when the image tag is its own field but don't see a way to handle images within Rich Text fields or force a size on upload.
I need to have the image dimensions match the size the client sized the image to in the Rich Text field. Is there a way to do this?
getRawContent()method on your redactor field and then apply your custom Twig filter. Have a look at the built-in filter to parse reference tags (Docs:parseRefs, source code:public function parseRefs($str)) that you could modify upon. – carlcs Nov 18 '14 at 13:05