mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 21:40:19 +00:00
Restore XHTML output for InsetGraphics.
To make this really good, we'd want to be able to rotate, crop, etc, the images, as well as convert them to suitable output formats. This should not be too difficult, since we do this sort of thing for display, anyway. But I don't myself know how to do it. Anyone? git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32295 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
879e5d3504
commit
451e926b84
@ -66,6 +66,7 @@ TODO
|
||||
#include "MetricsInfo.h"
|
||||
#include "Mover.h"
|
||||
#include "OutputParams.h"
|
||||
#include "output_xhtml.h"
|
||||
#include "sgml.h"
|
||||
#include "TocBackend.h"
|
||||
|
||||
@ -941,20 +942,25 @@ string InsetGraphics::prepareHTMLFile(OutputParams const & runparams) const
|
||||
}
|
||||
|
||||
|
||||
docstring InsetGraphics::xhtml(odocstream & os, OutputParams const & op) const
|
||||
docstring InsetGraphics::xhtml(XHTMLStream & xs, OutputParams const & op) const
|
||||
{
|
||||
string output_file = prepareHTMLFile(op);
|
||||
string const output_file = prepareHTMLFile(op);
|
||||
if (output_file.empty()) {
|
||||
LYXERR0("InsetGraphics::xhtml: File `" << params().filename
|
||||
<< "' not found.");
|
||||
os << "<img src=\"" << params().filename.absFilename() << "\" />";
|
||||
LYXERR0("InsetGraphics::xhtml: Unable to prepare file `"
|
||||
<< params().filename << "' for output. File missing?");
|
||||
string const attr = "src='" + params().filename.absFilename()
|
||||
+ "' alt='image: " + output_file + "'";
|
||||
xs << CompTag("img", attr);
|
||||
return docstring();
|
||||
}
|
||||
|
||||
// FIXME Do we want to do something with the parameters, other than
|
||||
// use them to do another conversion?
|
||||
// FIXME Do the other conversion! Cropping, rotating, etc.
|
||||
os << "<img src=\"" << from_utf8(output_file) << "\" />";
|
||||
// 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: "
|
||||
+ output_file + "'";
|
||||
xs << CompTag("img", attr);
|
||||
return docstring();
|
||||
}
|
||||
|
||||
|
@ -75,7 +75,7 @@ private:
|
||||
///
|
||||
int docbook(odocstream &, OutputParams const &) const;
|
||||
///
|
||||
docstring xhtml(odocstream & os, OutputParams const &) const;
|
||||
docstring xhtml(XHTMLStream & os, OutputParams const &) const;
|
||||
/** Tell LyX what the latex features you need i.e. what latex packages
|
||||
you need to be included.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user