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

More
IP: 192.168.0.71 11 years 6 months ago #7155 by radaee
sorry, we not so familiar to VS2013, we shall rebuild a new project.
More
IP: 192.168.0.71 11 years 6 months ago - 11 years 6 months ago #7161 by Simonenko
when approximately the build for universal app?
Last edit: 11 years 6 months ago by singh2393.
More
IP: 192.168.0.71 11 years 6 months ago #7162 by radaee
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.
More
IP: 192.168.0.71 11 years 6 months ago #7164 by Simonenko
how add this libary to universall porable class libary(c#) in my app?
More
IP: 192.168.0.71 11 years 6 months ago #7167 by radaee
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.
More
IP: 192.168.0.71 11 years 6 months ago - 11 years 6 months ago #7179 by Simonenko
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:
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
Powered by Kunena Forum