Image moves when reloaded in TAdvRichEditor and AdvRichEditorMiniHTMLIO

When I edit some text in a TAdvRichEditor (1.8.2.9) with AdvRichEditorMiniHTMLIO (PlainHTML option set) and add an image to the left of some text it gets saved correctly. However, when reloaded it gets moved to the right of the text. I use the following to load the editor:
AdvRichEditorMiniHTMLIO1.Insert(s); // s is a string loaded from a stream
I also use the option:
AdvRichEditor.HTMLImages := igInline;

When saved:
<IMG src="data:image/png;base64,*<image data snipped>*==" width="32" height="32" ></FONT><B><I><FONT color="#000000">Thank&nbsp;you&nbsp;for&nbsp;your&nbsp;business!</FONT></B></I>

When reloaded it is now on the right:
<B><I><FONT color="#000000">Thank&nbsp;you&nbsp;for&nbsp;your&nbsp;business!<IMG src="data:image/png;base64,*<image data snipped>*==" width="32" height="32" ></FONT></B></I>