mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
Output width and height parameters for XHTML images. Thanks to Rob Oakes
for the patch. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37554 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
16d57e550f
commit
2bb01af413
@ -960,6 +960,7 @@ string InsetGraphics::prepareHTMLFile(OutputParams const & runparams) const
|
||||
docstring InsetGraphics::xhtml(XHTMLStream & xs, OutputParams const & op) const
|
||||
{
|
||||
string const output_file = prepareHTMLFile(op);
|
||||
|
||||
if (output_file.empty()) {
|
||||
LYXERR0("InsetGraphics::xhtml: Unable to prepare file `"
|
||||
<< params().filename << "' for output. File missing?");
|
||||
@ -970,10 +971,18 @@ docstring InsetGraphics::xhtml(XHTMLStream & xs, OutputParams const & op) const
|
||||
}
|
||||
|
||||
// FIXME XHTML
|
||||
// Do we want to do something with the parameters, other than use them to
|
||||
// crop, etc, the image?
|
||||
// Speaking of which: Do the cropping, rotating, etc.
|
||||
string const attr = "src='" + output_file + "' alt='image: "
|
||||
// We aren't doing anything with the crop and rotate parameters, and it would
|
||||
// really be better to do width and height conversion, rather than to output
|
||||
// these parameters here.
|
||||
string imgstyle;
|
||||
if (!params().width.zero())
|
||||
imgstyle += "width:" + params().width.asHTMLString() + ";";
|
||||
if (!params().height.zero())
|
||||
imgstyle += " height:" + params().height.asHTMLString() + ";";
|
||||
if (!imgstyle.empty())
|
||||
imgstyle = "style='" + imgstyle + "' ";
|
||||
|
||||
string const attr = imgstyle + "src='" + output_file + "' alt='image: "
|
||||
+ output_file + "'";
|
||||
xs << html::CompTag("img", attr);
|
||||
return docstring();
|
||||
|
Loading…
Reference in New Issue
Block a user