mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-28 17:20:47 +08:00
Docx reader: add handling of vml image objects (jgm#4735) (#7257)
They represent images, the same way as other images in vml format.
This commit is contained in:
@@ -709,7 +709,8 @@ elemToParPart ns element
|
||||
case drawing of
|
||||
Just s -> expandDrawingId s >>= (\(fp, bs) -> return $ Drawing fp title alt bs $ elemToExtent drawingElem)
|
||||
Nothing -> throwError WrongElem
|
||||
-- The below is an attempt to deal with images in deprecated vml format.
|
||||
-- The two cases below are an attempt to deal with images in deprecated vml format.
|
||||
-- Todo: check out title and attr for deprecated format.
|
||||
elemToParPart ns element
|
||||
| isElem ns "w" "r" element
|
||||
, Just _ <- findChildByName ns "w" "pict" element =
|
||||
@@ -717,9 +718,15 @@ elemToParPart ns element
|
||||
>>= findAttrByName ns "r" "id"
|
||||
in
|
||||
case drawing of
|
||||
-- Todo: check out title and attr for deprecated format.
|
||||
Just s -> expandDrawingId s >>= (\(fp, bs) -> return $ Drawing fp "" "" bs Nothing)
|
||||
Nothing -> throwError WrongElem
|
||||
elemToParPart ns element
|
||||
| isElem ns "w" "r" element
|
||||
, Just objectElem <- findChildByName ns "w" "object" element
|
||||
, Just shapeElem <- findChildByName ns "v" "shape" objectElem
|
||||
, Just imagedataElem <- findChildByName ns "v" "imagedata" shapeElem
|
||||
, Just drawingId <- findAttrByName ns "r" "id" imagedataElem
|
||||
= expandDrawingId drawingId >>= (\(fp, bs) -> return $ Drawing fp "" "" bs Nothing)
|
||||
-- Chart
|
||||
elemToParPart ns element
|
||||
| isElem ns "w" "r" element
|
||||
|
||||
@@ -155,6 +155,10 @@ tests = [ testGroup "document"
|
||||
"VML image"
|
||||
"docx/image_vml.docx"
|
||||
"docx/image_vml.native"
|
||||
, testCompare
|
||||
"VML image as object"
|
||||
"docx/image_vml_as_object.docx"
|
||||
"docx/image_vml_as_object.native"
|
||||
, testCompare
|
||||
"inline image in links"
|
||||
"docx/inline_images.docx"
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
[Para [Str "Test",Space,Str "with",Space,Str "object",Space,Str "as",Space,Str "image:"]
|
||||
,Para [Image ("",[],[]) [] ("media/image1.emf","")]]
|
||||
Reference in New Issue
Block a user