私はsharpPDF APIを使用して、Unity3D内でPDF画像を作成しようとしています。Hello World テストはうまくいきましたが、何をしても画像が機能しません。ddImage 関数を使用すると、pdf リーダーがクラッシュし、newAddImage を使用しても何も起こらないようです。残念ながら、グーグルはまったく役に立たなかったので、ここの誰かが私を助けてくれることを願っています!
私は別のライブラリを調べましたが、pdfsharp は単純に機能せず、コンパイラで大量のエラーが発生し、iTextSharp は高価です。
APIはこちらhttp://www.francescogallorini.com/2011/02/unity-sharp-pdf/
私のコードは次のとおりです。
//byte[] image;
//image = File.ReadAllBytes("Assets/Sprites/128x128 player ship trial.png");
pdfDocument myDoc = new sharpPDF.pdfDocument("Awesome Space Station", "Al Wyvern");
pdfPage myPage = myDoc.addPage(500,500);
myPage.newAddImage("Assets/Sprites/128x128 player ship trial.png", 10, 10);
//myPage.addImage(image, 0,0,256,256);
myPage.addText("Hello World", 128, 128, predefinedFont.csCourier, 20);
myDoc.createPDF("Awesome Space Station.pdf");
myPage = null;
myDoc = null;
あなたが与えることができる助けをありがとう