- Posts: 1123
- Thank you received: 73
Microsoft Windows Phone 8.1 support ends (13 Jul 2017)
Microsoft has ended support for Windows Phone 8.1
Questions about Windows 8.1, 10, WindowsPhone, Windows UWP
Windows Universal Application
IP: 192.168.0.71
11 years 6 months ago #7155
by radaee
Replied by radaee on topic Windows Universal Application
sorry, we not so familiar to VS2013, we shall rebuild a new project.
IP: 192.168.0.71
11 years 6 months ago - 11 years 6 months ago #7161
by Simonenko
Replied by Simonenko on topic Windows Universal Application
when approximately the build for universal app?
Last edit: 11 years 6 months ago by singh2393.
IP: 192.168.0.71
11 years 6 months ago #7162
by radaee
Replied by radaee on topic Windows Universal Application
now you can try:
www.radaee.com/RDPDFLib.win8.1.rar
www.radaee.com/RDPDFLib.wp8.1.rar
there has static libraries, and dlls, and VC++ component project.
but no view demo. interfaces makes lot changes.
may need more time to build view demo.
www.radaee.com/RDPDFLib.win8.1.rar
www.radaee.com/RDPDFLib.wp8.1.rar
there has static libraries, and dlls, and VC++ component project.
but no view demo. interfaces makes lot changes.
may need more time to build view demo.
IP: 192.168.0.71
11 years 6 months ago #7164
by Simonenko
Replied by Simonenko on topic Windows Universal Application
how add this libary to universall porable class libary(c#) in my app?
IP: 192.168.0.71
11 years 6 months ago #7167
by radaee
Replied by radaee on topic Windows Universal Application
add exist project(RDPDFLib) to solution.
this time you has 2 projects.
and in C# project add reference, select RDPDFLib project as reference add to your C# project.
this time you has 2 projects.
and in C# project add reference, select RDPDFLib project as reference add to your C# project.
IP: 192.168.0.71
11 years 6 months ago - 11 years 6 months ago #7179
by Simonenko
Replied by Simonenko on topic Windows Universal Application
thank you, I connect libary to my project.
but I have a problem.
I generate pdf page to a bitmap but it inverted (Y), and watermark normally seen
see on the screen
thank you, I connect libary to my project. but I have a problem. I generate pdf page to a bitmap but it inverted (Y), and watermark normally seen see on the screen
my code:
but I have a problem.
I generate pdf page to a bitmap but it inverted (Y), and watermark normally seen
see on the screen
thank you, I connect libary to my project. but I have a problem. I generate pdf page to a bitmap but it inverted (Y), and watermark normally seen see on the screen
my code:
Code:
RDPDFLib.pdf.PDFMatrix pdfmatrix = new RDPDFLib.pdf.PDFMatrix(1,1,0,0);
RDPDFLib.pdf.PDFBmp bmp = new PDFBmp(width,height);
_pdfPage.RenderToBmp(bmp, pdfmatrix, false, PDF_RENDER_MODE.mode_best);
WriteableBitmap wb = bmp.Data;
Guid BitmapEncoderGuid = BitmapEncoder.JpegEncoderId;
InMemoryRandomAccessStream randomStream = new InMemoryRandomAccessStream();
BitmapEncoder encoder = await BitmapEncoder.CreateAsync(BitmapEncoderGuid, randomStream);
encoder.SetPixelData(Windows.Graphics.Imaging.BitmapPixelFormat.Bgra8,
Windows.Graphics.Imaging.BitmapAlphaMode.Straight,
(uint)width,
(uint)height,
(int)1,
(int)1,
wb.ToByteArray());
await encoder.FlushAsync();
Last edit: 11 years 6 months ago by singh2393.
Time to create page: 0.363 seconds