Questions tagged [lumia-imaging-sdk]

Lumia Imaging SDK is giving you access to a powerful library of exciting image-manipulation tools, which makes creating the next generation of imaging apps for Windows and Windows Phone 8.1 devices quicker and easier. Designed from the ground up with performance and a low-memory footprint in mind, the library’s functions don’t put a strain on the user’s device, which makes editing high-resolution images swift and engaging.

Lumia Imaging SDK is giving you access to a powerful library of exciting image-manipulation tools, which makes creating the next generation of imaging apps for Windows and Windows Phone 8.1 devices quicker and easier. Designed from the ground up with performance and a low-memory footprint in mind, the library’s functions don’t put a strain on the user’s device, which makes editing high-resolution images swift and engaging.

The technology behind the Imaging SDK is well proven; in fact, we at Microsoft use the same SDK to create our own imaging applications, such as Creative Studio. Thousands of developers are also using the Lumia Imaging SDK to create great imaging experiences for Windows Phone users. Check out the apps Kids Story Builder, 4Blend HDR, Momento, Pikura and Smart Resize, winners of our developer competitions, and many other apps built with the SDK.

Available as NuGet. The SDK team also publishes an open source project with some cool API's called "Lumia Imaging SDK Extras". It is available on GitHub.

Related to the Nokia Lumia Imaging SDK.

85 questions
1
vote
2 answers

Transform a FrameworkElement to a Stream without saving to a file

I would like to use a FrameworkElement (such as a Panel) as an Image (to use the Nokia Image SDK). I would like to apply an effect not on an image but on a FrameworkElement. I've been struggling trying to use a FrameworkElement as a writeableBitmap…
1
vote
1 answer

How to Create SplitToneRange for SplitToneFilter in Nokia Imaging SDK

I am a bit confused by the SplitToneRange IList required for SplitToneFilter. SplitToneFilter(IList splitToneRanges) How does one create such ranges? I did the following but I'm not sure if I am going about this correctly.…
Matthew
  • 3,976
  • 15
  • 66
  • 130
1
vote
1 answer

Switch Foreground and Background for Nokia Imaging SDK: BlendFilter()

I'm trying to use the Nokia Imaging SDK to blend an image I used the ChromaKeyFilter on onto a background image. I'd also like to to this in the same rendering process. So far I've got this: IList finalFilters = new…
1
vote
1 answer

Nokia Imaging SDK problems with EditingSession Class

I am trying to learn the Nokia Imaging SDK by going through the examples at developer.nokia.com and several other sites. Most of the examples tell to use this EditingSession class which is a part of Nokia Imaging SDK. But when I'm trying to use it…
1
vote
1 answer

How to apply an image template to a photo in windows phone 8

I would like to create an App for WP8 using the Nokia Imaging SDK where I can take some photos using the phone camera and then apply a kind of predefined templates over the photo that was just taken. For example, I take the photo and then I would…
MikePR
  • 2,786
  • 5
  • 31
  • 64
1
vote
3 answers

How to convert from PhotoResult or BitmapImage to Bitmap?

How to convert from PhotoResult to Bitmap in Nokia Imaging SDK? I wish to break an image into smaller images. The Bitmap class in Nokia.Graphics.Imaging has a constructor which takes another bitmap and a rectangle. I wish to use it. I cannot find…
1
vote
4 answers

Which Xap file is to be submitted to windows phone store

I have developed an application using Nokia Imaging SDK. It builds two forms of the XAP file, one for ARM platform and another for x86. Can anyone tell me which XAP file should be submitted to windows phone 8 store ?? And should I submit the file…
Sam
  • 925
  • 1
  • 12
  • 28
0
votes
1 answer

Marshalling exception with code from the ShareTarget second window

I'm having a hard time with some code I have that apparently struggles when called from the second window created by the ShareTarget contract (when you share something to the app, it opens in a small standalone window). This is my code so far: //…
Sergio0694
  • 4,447
  • 3
  • 31
  • 58
0
votes
0 answers

An unhandled win32 exception with BlendEffect during property changed Lumia Imaging 3.0 UWP

The error is raised randomly in my code. There's so stacktrace available It's more common when when RaisedPropertyChanged is called such as public IImageProvider IForeground { get { return BlendifierEffect.ForegroundSource; } …
PutraKg
  • 2,226
  • 3
  • 31
  • 60
0
votes
1 answer

How to improve BlendEffect quality? Lumia Imaging 3.0 & UWP

I am developing an app that put text into a background image. The textblocks are placed on a canvas control as children and I render the canvas to PNG. Then I use the BlendEffect to blend it with a background image. UPDATE This post is specifically…
PutraKg
  • 2,226
  • 3
  • 31
  • 60
0
votes
1 answer

MediaCapture class doesnt have AddVideoEffectAsync method

I recently installed Lumia Imaging SDK V3.0 (Win 8.1) on my Windows Phone 8.1 Application project. more on this package: http://go.microsoft.com/fwlink/?LinkID=521939 I was able to implement "VideoEffect" sample from link below on my project, to…
uncommon_name
  • 470
  • 2
  • 5
  • 19
0
votes
2 answers

How to work with LumiaImagingSDK.UWP 3.0 in windows 10 mobile app?

I work with app for windows 10. I tried to make an application for image editing. var client = new HttpClient(); var stream = await client.GetStreamAsync(ImageUrl); var source = new StreamImageSource(stream); var info = await…
arsenium
  • 571
  • 1
  • 7
  • 20
0
votes
3 answers

Apply Color lookup table on image using Lumia Imaging SDK

Is there any way to read color lookup table and apply it onto source image by using Lumia imaging sdk or any other alternative is available? Thanks in advance!
0
votes
1 answer

BlendEffect with mask broken on Imaging SDK 3?

i'm migrating an app from WP 8.1 to UWP ,so i'm moving to Lumia sdk 3 . This effect was working fine in SDK 2 BlendEffect(background, foreground, mask , BlendFunction.Normal , 1f) but in SDK 3 , the output is only background. i've tried this…
yannis
  • 67
  • 7
0
votes
3 answers

Unable to port Lumia imaging SDK2.0 to SDK 3.0(UWP)

I am having a tough time converting lumia imaging SDK 2.0 code to SDK3.0 in below specific case. I used to increase/decrease the image quality of JPG file using below code in Windows phone 8.1 RT apps: using (StreamImageSource source = new…