モダンAPI
Contents
[
Hide
]
はじめに
歴史的に、Aspose Slides は java.awt に依存しており、公開 API にはそこから以下のクラスが含まれています:
バージョン 24.4 から、この公開 API は廃止予定として宣言されました。
これらのクラスへの依存関係を排除するため、いわゆる「モダン API」を追加しました。つまり、廃止予定の API の代わりに使用するべき API で、Bitmap に依存する署名を持っています。Canvas は廃止予定として宣言され、そのサポートは公開 Slides API から削除されます。
System.Drawing に依存する廃止予定の公開 API の削除は、リリース 24.8 で行われる予定です。
モダン API
公開 API に以下のクラスと列挙型が追加されました:
- IImage - ラスターまたはベクター画像を表します。
- ImageFormat - 画像のファイル形式を表します。
- Images - IImage インターフェースを生成し、操作するためのメソッド。
IImage は破棄可能であり(IDisposable インターフェースを実装しており、使用は using でラップするか、別の便利な方法で dispose する必要があります)。
新しい API を使用する典型的なシナリオは次のようになります:
Presentation pres = new Presentation();
try {
IPPImage ppImage;
// ディスク上のファイルから IImage の破棄可能なインスタンスを生成します。
IImage image = Images.fromFile("image.png");
try {
// IImage のインスタンスをプレゼンテーションの画像に追加することによって PowerPoint 画像を作成します。
ppImage = pres.getImages().addImage(image);
} finally {
if (image != null) image.dispose();
}
// スライド #1 に画像シェイプを追加します。
pres.getSlides().get_Item(0).getShapes().addPictureFrame(ShapeType.Rectangle, 10, 10, 100, 100, ppImage);
// スライド #1 を表す IImage のインスタンスを取得します。
IImage slideImage = pres.getSlides().get_Item(0).getImage(new Size(1920, 1080));
try {
// 画像をディスクに保存します。
slideImage.save("slide1.jpeg", ImageFormat.Jpeg);
} finally {
if (slideImage != null) slideImage.dispose();
}
} finally {
if (pres != null) pres.dispose();
}
古いコードをモダン API に置き換える
一般的に、ImageIO を使用して古いメソッドの呼び出しを新しいものに置き換える必要があります。
古い:
Presentation pres = new Presentation();
try {
Bitmap slideImage = pres.getSlides().get_Item(0).getThumbnail(new Size(1920, 1080));
FileOutputStream fos = null;
try {
fos = new FileOutputStream("image.png");
slideImage.compress(android.graphics.Bitmap.CompressFormat.PNG, 100, fos);
} catch (FileNotFoundException e) {
e.printStackTrace();
} finally {
if (fos != null) {
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
} finally {
if (pres != null) pres.dispose();
}
新しい:
Presentation pres = new Presentation();
try {
IImage slideImage = pres.getSlides().get_Item(0).getImage(new Size(1920, 1080));
try {
slideImage.save("image.png", ImageFormat.Png);
} finally {
if (slideImage != null) slideImage.dispose();
}
} finally {
if (pres != null) pres.dispose();
}
スライドのサムネイルを取得する
廃止予定の API を使用したコード:
Presentation pres = new Presentation("pres.pptx");
try {
Bitmap slideImage = pres.getSlides().get_Item(0).getThumbnail();
FileOutputStream fos = null;
try {
fos = new FileOutputStream("slide1.png");
slideImage.compress(android.graphics.Bitmap.CompressFormat.PNG, 100, fos);
} catch (FileNotFoundException e) {
e.printStackTrace();
} finally {
if (fos != null) {
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
} finally {
if (pres != null) pres.dispose();
}
モダン API:
Presentation pres = new Presentation("pres.pptx");
try {
IImage slideImage = pres.getSlides().get_Item(0).getImage();
try {
slideImage.save("slide1.png", ImageFormat.Png);
} finally {
if (slideImage != null) slideImage.dispose();
}
} finally {
if (pres != null) pres.dispose();
}
シェイプのサムネイルを取得する
廃止予定の API を使用したコード:
Presentation pres = new Presentation("pres.pptx");
try {
Bitmap shapeImage = pres.getSlides().get_Item(0).getShapes().get_Item(0).getThumbnail();
FileOutputStream fos = null;
try {
fos = new FileOutputStream("shape.png");
shapeImage.compress(android.graphics.Bitmap.CompressFormat.PNG, 100, fos);
} catch (FileNotFoundException e) {
e.printStackTrace();
} finally {
if (fos != null) {
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
} finally {
if (pres != null) pres.dispose();
}
モダン API:
Presentation pres = new Presentation("pres.pptx");
try {
IImage shapeImage = pres.getSlides().get_Item(0).getShapes().get_Item(0).getImage();
try {
shapeImage.save("shape.png");
} finally {
if (shapeImage != null) shapeImage.dispose();
}
} finally {
if (pres != null) pres.dispose();
}
プレゼンテーションのサムネイルを取得する
廃止予定の API を使用したコード:
Presentation pres = new Presentation("pres.pptx");
try {
Bitmap[] bitmaps = pres.getThumbnails(new RenderingOptions(), new Size(1980, 1028));
for (int index = 0; index < bitmaps.length; index++)
{
android.graphics.Bitmap thumbnail = bitmaps[index];
FileOutputStream fos = null;
try {
fos = new FileOutputStream("slide" + index + ".png");
thumbnail.compress(android.graphics.Bitmap.CompressFormat.PNG, 100, fos);
} catch (FileNotFoundException e) {
e.printStackTrace();
} finally {
if (fos != null) {
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
} finally {
if (pres != null) pres.dispose();
}
モダン API:
Presentation pres = new Presentation("pres.pptx");
try {
IImage[] images = pres.getImages(new RenderingOptions(), new Size(1980, 1028));
try
{
for (int index = 0; index < images.length; index++)
{
IImage thumbnail = images[index];
thumbnail.save("slide" + index + ".png", ImageFormat.Png);
}
}
finally
{
for (IImage image : images)
{
image.dispose();
}
}
} finally {
if (pres != null) pres.dispose();
}
プレゼンテーションに画像を追加する
廃止予定の API を使用したコード:
Presentation pres = new Presentation();
try {
IPPImage ppImage = null;
File file = new File("image.png");
Bitmap bitmap = BitmapFactory.decodeFile(file.getAbsolutePath());
ppImage = pres.getImages().addImage(bitmap);
pres.getSlides().get_Item(0).getShapes().addPictureFrame(ShapeType.Rectangle, 10, 10, 100, 100, ppImage);
} finally {
if (pres != null) pres.dispose();
}
モダン API:
Presentation pres = new Presentation();
try {
IPPImage ppImage;
IImage image = Images.fromFile("image.png");
try {
ppImage = pres.getImages().addImage(image);
} finally {
if (image != null) image.dispose();
}
pres.getSlides().get_Item(0).getShapes().addPictureFrame(ShapeType.Rectangle, 10, 10, 100, 100, ppImage);
} finally {
if (pres != null) pres.dispose();
}
廃止予定のメソッドとモダン API での置き換え
プレゼンテーション
メソッドシグネチャ | 置き換えメソッドシグネチャ |
---|---|
public final Bitmap[] getThumbnails(IRenderingOptions options) | public final IImage[] getImages(IRenderingOptions options) |
public final Bitmap[] getThumbnails(IRenderingOptions options, Size imageSize) | public final IImage[] getImages(IRenderingOptions options, Size imageSize) |
public final Bitmap[] getThumbnails(IRenderingOptions options, float scaleX, float scaleY) | public final IImage[] getImages(IRenderingOptions options, float scaleX, float scaleY) |
public final Bitmap[] getThumbnails(IRenderingOptions options, int[] slides) | public final IImage[] getImages(IRenderingOptions options, int[] slides) |
public final Bitmap[] getThumbnails(IRenderingOptions options, int[] slides, Size imageSize) | public final IImage[] getImages(IRenderingOptions options, int[] slides, Size imageSize) |
public final Bitmap[] getThumbnails(IRenderingOptions options, int[] slides, float scaleX, float scaleY) | public final IImage[] getImages(IRenderingOptions options, int[] slides, float scaleX, float scaleY) |
シェイプ
メソッドシグネチャ | 置き換えメソッドシグネチャ |
---|---|
public final Bitmap getThumbnail() | public final IImage getImage() |
public final Bitmap getThumbnail(int bounds, float scaleX, float scaleY) | public final IImage getImage(int bounds, float scaleX, float scaleY) |
スライド
メソッドシグネチャ | 置き換えメソッドシグネチャ |
---|---|
public final Bitmap getThumbnail() | public final IImage getImage() |
public final Bitmap getThumbnail(Size imageSize) | public final IImage getImage(Size imageSize) |
public final Bitmap getThumbnail(float scaleX, float scaleY) | public final IImage getImage(float scaleX, float scaleY) |
public final Bitmap getThumbnail(IRenderingOptions options) | public final IImage getImage(IRenderingOptions options) |
public final Bitmap getThumbnail(IRenderingOptions options, Size imageSize) | public final IImage getImage(IRenderingOptions options, Size imageSize) |
public final Bitmap getThumbnail(IRenderingOptions options, float scaleX, float scaleY) | public final IImage getImage(IRenderingOptions options, float scaleX, float scaleY) |
public final Bitmap getThumbnail(ITiffOptions options) | public final IImage getImage(ITiffOptions options) |
public final void renderToGraphics(IRenderingOptions options, Canvas graphics) | 完全に削除されます |
public final void renderToGraphics(IRenderingOptions options, Canvas graphics, Size renderingSize) | 完全に削除されます |
public final void renderToGraphics(IRenderingOptions options, Canvas graphics, float scaleX, float scaleY) | 完全に削除されます |
出力
メソッドシグネチャ | 置き換えメソッドシグネチャ |
---|---|
public final IOutputFile add(String path, Bitmap image) | public final IOutputFile add(String path, IImage image) |
ImageCollection
メソッドシグネチャ | 置き換えメソッドシグネチャ |
---|---|
public final IPPImage addImage(Bitmap image) | public final IPPImage addImage(IImage image) |
PPImage
メソッドシグネチャ | 置き換えメソッドシグネチャ |
---|---|
public final Bitmap getSystemImage() | public final IImage getImage() |
PatternFormat
メソッドシグネチャ | 置き換えメソッドシグネチャ |
---|---|
public final Bitmap getTileImage(Integer styleColor) | public final IImage getTile(Integer styleColor) |
public final Bitmap getTileImage(Integer background, Integer foreground) | public final IImage getTile(Integer background, Integer foreground) |
PatternFormatEffectiveData
メソッドシグネチャ | 置き換えメソッドシグネチャ |
---|---|
public final Bitmap getTileImage(Integer background, Integer foreground) | public final IImage getTileIImage(Integer background, Integer foreground) |
Canvas の API サポートは中止されます
Canvas を使用したメソッドは廃止予定として宣言され、そのサポートは公開 API から削除されます。
これを使用する API の部分は削除されます: