InsertImage
InsertImage(Image)
插入来自 .NET 的图像Image 对象插入文档。图像以 100% 比例内联插入。
public Shape InsertImage(Image image)
范围 | 类型 | 描述 |
---|---|---|
image | Image | 要插入到文档中的图像。 |
返回值
刚刚插入的图像节点。
评论
您可以使用 更改图像大小、位置、定位方法和其他设置Shape
此方法返回的对象。
例子
展示如何将对象中的图像插入文档。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
string imageFile = ImageDir + "Logo.jpg";
// 以下是从 Image 对象实例插入图像的三种方法。
// 1 - 根据图像的原始尺寸具有默认大小的内联形状:
builder.InsertImage(imageFile);
builder.InsertBreak(BreakType.PageBreak);
// 2 - 具有自定义尺寸的内联形状:
builder.InsertImage(imageFile, ConvertUtil.PixelToPoint(250), ConvertUtil.PixelToPoint(144));
builder.InsertBreak(BreakType.PageBreak);
// 3 - 具有自定义尺寸的浮动形状:
builder.InsertImage(imageFile, RelativeHorizontalPosition.Margin, 100, RelativeVerticalPosition.Margin,
100, 200, 100, WrapType.Square);
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertImageFromImageObject.docx");
也可以看看
- class Shape
- class DocumentBuilder
- 命名空间 Aspose.Words
- 部件 Aspose.Words
InsertImage(string)
将文件或 URL 中的图片插入文档。图片以内联方式插入,且比例为 100%。
public Shape InsertImage(string fileName)
范围 | 类型 | 描述 |
---|---|---|
fileName | String | 包含图像的文件。可以是任何有效的本地或远程 URI。 |
返回值
刚刚插入的图像节点。
评论
如果您指定远程 URI,此重载将在插入 document 之前自动下载图像。
您可以使用 更改图像大小、位置、定位方法和其他设置Shape
此方法返回的对象。
例子
展示如何插入 WebP 图像。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.InsertImage(ImageDir + "WebP image.webp");
doc.Save(ArtifactsDir + "Image.InsertWebpImage.docx");
展示如何将 gif 图像插入文档。
DocumentBuilder builder = new DocumentBuilder();
// 我们可以使用路径或字节数组插入 gif 图像。
// 仅当 DocumentBuilder 优化到 Word 2010 或更高版本时才有效。
// 注意,访问图像字节会导致 Gif 转换为 Png。
Shape gifImage = builder.InsertImage(ImageDir + "Graphics Interchange Format.gif");
gifImage = builder.InsertImage(File.ReadAllBytes(ImageDir + "Graphics Interchange Format.gif"));
builder.Document.Save(ArtifactsDir + "InsertGif.docx");
展示如何将带有图像的形状插入文档。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// 下面是文档构建器的“InsertShape”方法的两个位置
// 可以获取形状将显示的图像。
// 1 - 传递图像文件的本地文件系统文件名:
builder.Write("Image from local file: ");
builder.InsertImage(ImageDir + "Logo.jpg");
builder.Writeln();
// 2 - 传递指向图像的 URL。
builder.Write("Image from a URL: ");
builder.InsertImage(ImageUrl);
builder.Writeln();
doc.Save(ArtifactsDir + "Image.FromUrl.docx");
展示如何将浮动图像插入到页面的中心。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// 插入一个浮动图像,该图像将出现在重叠文本后面,并将其与页面的中心对齐。
Shape shape = builder.InsertImage(ImageDir + "Logo.jpg");
shape.WrapType = WrapType.None;
shape.BehindText = true;
shape.RelativeHorizontalPosition = RelativeHorizontalPosition.Page;
shape.RelativeVerticalPosition = RelativeVerticalPosition.Page;
shape.HorizontalAlignment = HorizontalAlignment.Center;
shape.VerticalAlignment = VerticalAlignment.Center;
doc.Save(ArtifactsDir + "Image.CreateFloatingPageCenter.docx");
显示如何确定要插入哪个图像。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.InsertImage(ImageDir + "Scalable Vector Graphics.svg");
// Aspose.Words 将 SVG 图像以 PNG 格式插入文档,并附加 svgBlip 扩展名
// 包含原始矢量 SVG 图像表示。
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertSvgImage.SvgWithSvgBlip.docx");
// Aspose.Words 将 SVG 图像作为 PNG 插入到文档中,就像 Microsoft Word 对旧格式所做的那样。
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertSvgImage.Svg.doc");
doc.CompatibilityOptions.OptimizeFor(MsWordVersion.Word2003);
// Aspose.Words 将 SVG 图像作为 EMF 元文件插入到文档中,以将图像保存为矢量表示。
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertSvgImage.Emf.docx");
展示如何将本地文件系统中的图像插入到文档中。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// 以下是从本地系统文件名插入图像的三种方法。
// 1 - 根据图像的原始尺寸具有默认大小的内联形状:
builder.InsertImage(ImageDir + "Logo.jpg");
builder.InsertBreak(BreakType.PageBreak);
// 2 - 具有自定义尺寸的内联形状:
builder.InsertImage(ImageDir + "Transparent background logo.png", ConvertUtil.PixelToPoint(250),
ConvertUtil.PixelToPoint(144));
builder.InsertBreak(BreakType.PageBreak);
// 3 - 具有自定义尺寸的浮动形状:
builder.InsertImage(ImageDir + "Windows MetaFile.wmf", RelativeHorizontalPosition.Margin, 100,
RelativeVerticalPosition.Margin, 100, 200, 100, WrapType.Square);
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertImageFromFilename.docx");
也可以看看
- class Shape
- class DocumentBuilder
- 命名空间 Aspose.Words
- 部件 Aspose.Words
InsertImage(Stream)
将流中的图像插入文档。图像以内联方式插入,且比例为 100%。
public Shape InsertImage(Stream stream)
范围 | 类型 | 描述 |
---|---|---|
stream | Stream | 包含图像的流。 |
返回值
刚刚插入的图像节点。
评论
您可以使用 更改图像大小、位置、定位方法和其他设置Shape
此方法返回的对象。
例子
展示如何将流中的带有图像的形状插入文档。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
using (Stream stream = File.OpenRead(ImageDir + "Logo.jpg"))
{
builder.Write("Image from stream: ");
builder.InsertImage(stream);
}
doc.Save(ArtifactsDir + "Image.FromStream.docx");
展示如何将流中的图像插入文档。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
using (Stream stream = File.OpenRead(ImageDir + "Logo.jpg"))
{
// 以下是从流插入图像的三种方法。
// 1 - 根据图像的原始尺寸具有默认大小的内联形状:
builder.InsertImage(stream);
builder.InsertBreak(BreakType.PageBreak);
// 2 - 具有自定义尺寸的内联形状:
builder.InsertImage(stream, ConvertUtil.PixelToPoint(250), ConvertUtil.PixelToPoint(144));
builder.InsertBreak(BreakType.PageBreak);
// 3 - 具有自定义尺寸的浮动形状:
builder.InsertImage(stream, RelativeHorizontalPosition.Margin, 100, RelativeVerticalPosition.Margin,
100, 200, 100, WrapType.Square);
}
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertImageFromStream.docx");
也可以看看
- class Shape
- class DocumentBuilder
- 命名空间 Aspose.Words
- 部件 Aspose.Words
InsertImage(byte[])
将字节数组中的图像插入文档。图像以内联方式插入,且比例为 100%。
public Shape InsertImage(byte[] imageBytes)
范围 | 类型 | 描述 |
---|---|---|
imageBytes | Byte[] | 包含图像的字节数组。 |
返回值
刚刚插入的图像节点。
评论
您可以使用 更改图像大小、位置、定位方法和其他设置Shape
此方法返回的对象。
例子
展示如何将字节数组中的图像插入文档。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
byte[] imageByteArray = TestUtil.ImageToByteArray(ImageDir + "Logo.jpg");
// 以下是从字节数组插入图像的三种方法。
// 1 - 根据图像的原始尺寸具有默认大小的内联形状:
builder.InsertImage(imageByteArray);
builder.InsertBreak(BreakType.PageBreak);
// 2 - 具有自定义尺寸的内联形状:
builder.InsertImage(imageByteArray, ConvertUtil.PixelToPoint(250), ConvertUtil.PixelToPoint(144));
builder.InsertBreak(BreakType.PageBreak);
// 3 - 具有自定义尺寸的浮动形状:
builder.InsertImage(imageByteArray, RelativeHorizontalPosition.Margin, 100, RelativeVerticalPosition.Margin,
100, 200, 100, WrapType.Square);
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertImageFromByteArray.docx");
也可以看看
- class Shape
- class DocumentBuilder
- 命名空间 Aspose.Words
- 部件 Aspose.Words
InsertImage(Image, double, double)
从 .NET 插入内联图像Image 对象放入文档并将其缩放到指定大小。
public Shape InsertImage(Image image, double width, double height)
范围 | 类型 | 描述 |
---|---|---|
image | Image | 要插入到文档中的图像。 |
width | Double | 图像的宽度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
height | Double | 图像的高度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
返回值
刚刚插入的图像节点。
评论
您可以使用 更改图像大小、位置、定位方法和其他设置Shape
此方法返回的对象。
例子
展示如何将对象中的图像插入文档。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
string imageFile = ImageDir + "Logo.jpg";
// 以下是从 Image 对象实例插入图像的三种方法。
// 1 - 根据图像的原始尺寸具有默认大小的内联形状:
builder.InsertImage(imageFile);
builder.InsertBreak(BreakType.PageBreak);
// 2 - 具有自定义尺寸的内联形状:
builder.InsertImage(imageFile, ConvertUtil.PixelToPoint(250), ConvertUtil.PixelToPoint(144));
builder.InsertBreak(BreakType.PageBreak);
// 3 - 具有自定义尺寸的浮动形状:
builder.InsertImage(imageFile, RelativeHorizontalPosition.Margin, 100, RelativeVerticalPosition.Margin,
100, 200, 100, WrapType.Square);
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertImageFromImageObject.docx");
也可以看看
- class Shape
- class DocumentBuilder
- 命名空间 Aspose.Words
- 部件 Aspose.Words
InsertImage(string, double, double)
将文件或 URL 中的内嵌图像插入文档并将其缩放到指定大小。
public Shape InsertImage(string fileName, double width, double height)
范围 | 类型 | 描述 |
---|---|---|
fileName | String | 包含图像的文件。 |
width | Double | 图像的宽度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
height | Double | 图像的高度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
返回值
刚刚插入的图像节点。
评论
您可以使用 更改图像大小、位置、定位方法和其他设置Shape
此方法返回的对象。
例子
展示如何将本地文件系统中的图像插入到文档中。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// 以下是从本地系统文件名插入图像的三种方法。
// 1 - 根据图像的原始尺寸具有默认大小的内联形状:
builder.InsertImage(ImageDir + "Logo.jpg");
builder.InsertBreak(BreakType.PageBreak);
// 2 - 具有自定义尺寸的内联形状:
builder.InsertImage(ImageDir + "Transparent background logo.png", ConvertUtil.PixelToPoint(250),
ConvertUtil.PixelToPoint(144));
builder.InsertBreak(BreakType.PageBreak);
// 3 - 具有自定义尺寸的浮动形状:
builder.InsertImage(ImageDir + "Windows MetaFile.wmf", RelativeHorizontalPosition.Margin, 100,
RelativeVerticalPosition.Margin, 100, 200, 100, WrapType.Square);
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertImageFromFilename.docx");
也可以看看
- class Shape
- class DocumentBuilder
- 命名空间 Aspose.Words
- 部件 Aspose.Words
InsertImage(Stream, double, double)
将流中的内嵌图像插入文档并将其缩放到指定大小。
public Shape InsertImage(Stream stream, double width, double height)
范围 | 类型 | 描述 |
---|---|---|
stream | Stream | 包含图像的流。 |
width | Double | 图像的宽度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
height | Double | 图像的高度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
返回值
刚刚插入的图像节点。
评论
您可以使用 更改图像大小、位置、定位方法和其他设置Shape
此方法返回的对象。
例子
展示如何将流中的图像插入文档。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
using (Stream stream = File.OpenRead(ImageDir + "Logo.jpg"))
{
// 以下是从流插入图像的三种方法。
// 1 - 根据图像的原始尺寸具有默认大小的内联形状:
builder.InsertImage(stream);
builder.InsertBreak(BreakType.PageBreak);
// 2 - 具有自定义尺寸的内联形状:
builder.InsertImage(stream, ConvertUtil.PixelToPoint(250), ConvertUtil.PixelToPoint(144));
builder.InsertBreak(BreakType.PageBreak);
// 3 - 具有自定义尺寸的浮动形状:
builder.InsertImage(stream, RelativeHorizontalPosition.Margin, 100, RelativeVerticalPosition.Margin,
100, 200, 100, WrapType.Square);
}
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertImageFromStream.docx");
也可以看看
- class Shape
- class DocumentBuilder
- 命名空间 Aspose.Words
- 部件 Aspose.Words
InsertImage(byte[], double, double)
将字节数组中的内联图像插入文档并将其缩放到指定大小。
public Shape InsertImage(byte[] imageBytes, double width, double height)
范围 | 类型 | 描述 |
---|---|---|
imageBytes | Byte[] | 包含图像的字节数组。 |
width | Double | 图像的宽度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
height | Double | 图像的高度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
返回值
刚刚插入的图像节点。
评论
您可以使用 更改图像大小、位置、定位方法和其他设置Shape
此方法返回的对象。
例子
展示如何将字节数组中的图像插入文档。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
byte[] imageByteArray = TestUtil.ImageToByteArray(ImageDir + "Logo.jpg");
// 以下是从字节数组插入图像的三种方法。
// 1 - 根据图像的原始尺寸具有默认大小的内联形状:
builder.InsertImage(imageByteArray);
builder.InsertBreak(BreakType.PageBreak);
// 2 - 具有自定义尺寸的内联形状:
builder.InsertImage(imageByteArray, ConvertUtil.PixelToPoint(250), ConvertUtil.PixelToPoint(144));
builder.InsertBreak(BreakType.PageBreak);
// 3 - 具有自定义尺寸的浮动形状:
builder.InsertImage(imageByteArray, RelativeHorizontalPosition.Margin, 100, RelativeVerticalPosition.Margin,
100, 200, 100, WrapType.Square);
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertImageFromByteArray.docx");
也可以看看
- class Shape
- class DocumentBuilder
- 命名空间 Aspose.Words
- 部件 Aspose.Words
InsertImage(Image, RelativeHorizontalPosition, double, RelativeVerticalPosition, double, double, double, WrapType)
插入来自 .NET 的图像Image位于指定位置和大小的 对象。
public Shape InsertImage(Image image, RelativeHorizontalPosition horzPos, double left,
RelativeVerticalPosition vertPos, double top, double width, double height, WrapType wrapType)
范围 | 类型 | 描述 |
---|---|---|
image | Image | 要插入到文档中的图像。 |
horzPos | RelativeHorizontalPosition | 指定从哪里测量到图像的距离。 |
left | Double | 从原点到图像左侧的距离(以点为单位)。 |
vertPos | RelativeVerticalPosition | 指定从哪里测量到图像的距离。 |
top | Double | 从原点到图像顶部的距离(以点为单位)。 |
width | Double | 图像的宽度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
height | Double | 图像的高度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
wrapType | WrapType | 指定如何让文本环绕图像。 |
返回值
刚刚插入的图像节点。
评论
您可以使用 更改图像大小、位置、定位方法和其他设置Shape
此方法返回的对象。
例子
展示如何将对象中的图像插入文档。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
string imageFile = ImageDir + "Logo.jpg";
// 以下是从 Image 对象实例插入图像的三种方法。
// 1 - 根据图像的原始尺寸具有默认大小的内联形状:
builder.InsertImage(imageFile);
builder.InsertBreak(BreakType.PageBreak);
// 2 - 具有自定义尺寸的内联形状:
builder.InsertImage(imageFile, ConvertUtil.PixelToPoint(250), ConvertUtil.PixelToPoint(144));
builder.InsertBreak(BreakType.PageBreak);
// 3 - 具有自定义尺寸的浮动形状:
builder.InsertImage(imageFile, RelativeHorizontalPosition.Margin, 100, RelativeVerticalPosition.Margin,
100, 200, 100, WrapType.Square);
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertImageFromImageObject.docx");
也可以看看
- class Shape
- enum RelativeHorizontalPosition
- enum RelativeVerticalPosition
- enum WrapType
- class DocumentBuilder
- 命名空间 Aspose.Words
- 部件 Aspose.Words
InsertImage(string, RelativeHorizontalPosition, double, RelativeVerticalPosition, double, double, double, WrapType)
从文件或 URL 中插入指定位置和大小的图像。
public Shape InsertImage(string fileName, RelativeHorizontalPosition horzPos, double left,
RelativeVerticalPosition vertPos, double top, double width, double height, WrapType wrapType)
范围 | 类型 | 描述 |
---|---|---|
fileName | String | 包含图像的文件。 |
horzPos | RelativeHorizontalPosition | 指定从哪里测量到图像的距离。 |
left | Double | 从原点到图像左侧的距离(以点为单位)。 |
vertPos | RelativeVerticalPosition | 指定从哪里测量到图像的距离。 |
top | Double | 从原点到图像顶部的距离(以点为单位)。 |
width | Double | 图像的宽度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
height | Double | 图像的高度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
wrapType | WrapType | 指定如何让文本环绕图像。 |
返回值
刚刚插入的图像节点。
评论
您可以使用 更改图像大小、位置、定位方法和其他设置Shape
此方法返回的对象。
例子
显示如何插入图像。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// 有两种方法可以使用文档构建器来获取图像然后将其作为浮动形状插入。
// 1 - 来自本地文件系统中的文件:
builder.InsertImage(ImageDir + "Transparent background logo.png", RelativeHorizontalPosition.Margin, 100,
RelativeVerticalPosition.Margin, 0, 200, 200, WrapType.Square);
// 2 - 来自 URL:
builder.InsertImage(ImageUrl, RelativeHorizontalPosition.Margin, 100,
RelativeVerticalPosition.Margin, 250, 200, 200, WrapType.Square);
doc.Save(ArtifactsDir + "DocumentBuilder.InsertFloatingImage.docx");
展示如何将本地文件系统中的图像插入文档,同时保留其尺寸。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// InsertImage 方法使用传递的图像在其图像数据中创建一个浮动形状。
// 我们可以指定形状的尺寸并将它们传递给此方法。
Shape imageShape = builder.InsertImage(ImageDir + "Logo.jpg", RelativeHorizontalPosition.Margin, 0,
RelativeVerticalPosition.Margin, 0, -1, -1, WrapType.Square);
// 传递负值,因为预期尺寸将自动定义
// 形状的尺寸基于其图像的尺寸。
Assert.AreEqual(300.0d, imageShape.Width);
Assert.AreEqual(300.0d, imageShape.Height);
doc.Save(ArtifactsDir + "DocumentBuilder.InsertImageOriginalSize.docx");
展示如何将本地文件系统中的图像插入到文档中。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// 以下是从本地系统文件名插入图像的三种方法。
// 1 - 根据图像的原始尺寸具有默认大小的内联形状:
builder.InsertImage(ImageDir + "Logo.jpg");
builder.InsertBreak(BreakType.PageBreak);
// 2 - 具有自定义尺寸的内联形状:
builder.InsertImage(ImageDir + "Transparent background logo.png", ConvertUtil.PixelToPoint(250),
ConvertUtil.PixelToPoint(144));
builder.InsertBreak(BreakType.PageBreak);
// 3 - 具有自定义尺寸的浮动形状:
builder.InsertImage(ImageDir + "Windows MetaFile.wmf", RelativeHorizontalPosition.Margin, 100,
RelativeVerticalPosition.Margin, 100, 200, 100, WrapType.Square);
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertImageFromFilename.docx");
也可以看看
- class Shape
- enum RelativeHorizontalPosition
- enum RelativeVerticalPosition
- enum WrapType
- class DocumentBuilder
- 命名空间 Aspose.Words
- 部件 Aspose.Words
InsertImage(Stream, RelativeHorizontalPosition, double, RelativeVerticalPosition, double, double, double, WrapType)
将流中的图像插入到指定位置和大小。
public Shape InsertImage(Stream stream, RelativeHorizontalPosition horzPos, double left,
RelativeVerticalPosition vertPos, double top, double width, double height, WrapType wrapType)
范围 | 类型 | 描述 |
---|---|---|
stream | Stream | 包含图像的流。 |
horzPos | RelativeHorizontalPosition | 指定从哪里测量到图像的距离。 |
left | Double | 从原点到图像左侧的距离(以点为单位)。 |
vertPos | RelativeVerticalPosition | 指定从哪里测量到图像的距离。 |
top | Double | 从原点到图像顶部的距离(以点为单位)。 |
width | Double | 图像的宽度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
height | Double | 图像的高度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
wrapType | WrapType | 指定如何让文本环绕图像。 |
返回值
刚刚插入的图像节点。
评论
您可以使用 更改图像大小、位置、定位方法和其他设置Shape
此方法返回的对象。
例子
展示如何将流中的图像插入文档。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
using (Stream stream = File.OpenRead(ImageDir + "Logo.jpg"))
{
// 以下是从流插入图像的三种方法。
// 1 - 根据图像的原始尺寸具有默认大小的内联形状:
builder.InsertImage(stream);
builder.InsertBreak(BreakType.PageBreak);
// 2 - 具有自定义尺寸的内联形状:
builder.InsertImage(stream, ConvertUtil.PixelToPoint(250), ConvertUtil.PixelToPoint(144));
builder.InsertBreak(BreakType.PageBreak);
// 3 - 具有自定义尺寸的浮动形状:
builder.InsertImage(stream, RelativeHorizontalPosition.Margin, 100, RelativeVerticalPosition.Margin,
100, 200, 100, WrapType.Square);
}
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertImageFromStream.docx");
也可以看看
- class Shape
- enum RelativeHorizontalPosition
- enum RelativeVerticalPosition
- enum WrapType
- class DocumentBuilder
- 命名空间 Aspose.Words
- 部件 Aspose.Words
InsertImage(byte[], RelativeHorizontalPosition, double, RelativeVerticalPosition, double, double, double, WrapType)
在指定位置和大小插入字节数组中的图像。
public Shape InsertImage(byte[] imageBytes, RelativeHorizontalPosition horzPos, double left,
RelativeVerticalPosition vertPos, double top, double width, double height, WrapType wrapType)
范围 | 类型 | 描述 |
---|---|---|
imageBytes | Byte[] | 包含图像的字节数组。 |
horzPos | RelativeHorizontalPosition | 指定从哪里测量到图像的距离。 |
left | Double | 从原点到图像左侧的距离(以点为单位)。 |
vertPos | RelativeVerticalPosition | 指定从哪里测量到图像的距离。 |
top | Double | 从原点到图像顶部的距离(以点为单位)。 |
width | Double | 图像的宽度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
height | Double | 图像的高度(以磅为单位)。可以为负值或零,以请求 100% 缩放。 |
wrapType | WrapType | 指定如何让文本环绕图像。 |
返回值
刚刚插入的图像节点。
评论
您可以使用 更改图像大小、位置、定位方法和其他设置Shape
此方法返回的对象。
例子
展示如何将字节数组中的图像插入文档。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
byte[] imageByteArray = TestUtil.ImageToByteArray(ImageDir + "Logo.jpg");
// 以下是从字节数组插入图像的三种方法。
// 1 - 根据图像的原始尺寸具有默认大小的内联形状:
builder.InsertImage(imageByteArray);
builder.InsertBreak(BreakType.PageBreak);
// 2 - 具有自定义尺寸的内联形状:
builder.InsertImage(imageByteArray, ConvertUtil.PixelToPoint(250), ConvertUtil.PixelToPoint(144));
builder.InsertBreak(BreakType.PageBreak);
// 3 - 具有自定义尺寸的浮动形状:
builder.InsertImage(imageByteArray, RelativeHorizontalPosition.Margin, 100, RelativeVerticalPosition.Margin,
100, 200, 100, WrapType.Square);
doc.Save(ArtifactsDir + "DocumentBuilderImages.InsertImageFromByteArray.docx");
也可以看看
- class Shape
- enum RelativeHorizontalPosition
- enum RelativeVerticalPosition
- enum WrapType
- class DocumentBuilder
- 命名空间 Aspose.Words
- 部件 Aspose.Words