Questions tagged [nokia-imaging-sdk]

Nokia imaging SDK is a software development kit for Windows Phone 8, 8.1, Windows RT, 8.0 and 8.1 that provides imaging tools for the developer, free. It includes over 50 different filters as well as various imaging tools. It runs optimized algorithms on the patented RAJPEG technology, resulting in a small memory footprint.

The Nokia Imaging SDK makes some of the technologies that Nokia uses in its own imaging applications available to developers. It is a productive library for manipulating image data captured and stored by mobile devices in an efficient way.

The features include decoding and encoding JPEG images, applying filters, cropping, rotating and resizing. The SDK provides more than 50 pre-made filters and effects that have been specifically developed for mobile imaging, with speed and memory performance as key drivers.

The SDK is highly optimized to be super-fast by meticulous memory and code optimization. The patented JPEG technology, RAJPEG, contributes to making this possible, as it allows access to any image data without decoding the whole image. That means you can apply effects to high resolution images, without worrying about your memory budget.

Download NuGet: http://www.nuget.org/packages/NokiaImagingSDK/

50 questions
1
vote
1 answer

How to program an image filter using Color lookup table in Nokia Imaging SDK

I have a few Color lookup tables that looks like this. Is there a guide that i can use to program an image filter using color lookup table in Nokia Imaging SDK. I am switching to Nokia Imaging SDK because i have been told that it is more optimized…
Rishabh876
  • 3,010
  • 2
  • 20
  • 37
1
vote
1 answer

Capturing images with blended images in nokia imaging sdk

I am making windows phone app using nokia imaging sdk and example of app is this real time blend demo I am trying to capture image with Image overlayed image i.e image with other image in top of it as in above example in live camera stream below is…
SD7
  • 514
  • 8
  • 25
1
vote
0 answers

WP8 GifRenderer ArgumentException: Value does not fall within the expected range

I have a problem with GifRenderer class. In an Windows Phone 8 app, my scope is generate an animated gif starting from a list of png images stored in isolated storage of app and then save it and share it. When in my code I call…
1
vote
0 answers

PhotoCatureDevice.SetCaptureResolutionAsync crashing on Lumia 1020 while working 820

There are 3 lines of code that work fine on my 820, but crash on a Lumia 1020: var captureResolutions = PhotoCaptureDevice.GetAvailableCaptureResolutions(CameraSensorLocation.Back); var captureResolution = captureResolutions.First(); await…
jalgames
  • 781
  • 4
  • 23
1
vote
3 answers

Pass binary data with page navigation on windows phone

I want to create a 2nd-level page enabling the user to post-process an image captured before. To get that image to page 2, I want to pass is as some kind of parameter. But the only way I saw was to append it as a string to the URL and that doesn't…
1
vote
1 answer

Invalid pointer at Nokia.Graphics.Imaging.BitmapRender.RenderAsync()

I'm working on an imaging app using the nokia imaging SDK 1.1. A task seeming fairly simple (let the user choose an image and apply some filters to it) currently blocks me, for 2 days now. I've written hundreds of lines and reviewd all the Nokia Dev…
jalgames
  • 781
  • 4
  • 23
1
vote
1 answer

control shutter speed on Windows Phone

Can the shutter speed be controlled on a windows phone? I know Nokia has an Imaging SDK available for its LUMIA phones, not sure if somebody has tried to control shutter speed and if it is available to be controlled through the SDK? Any guidance is…
1
vote
0 answers

How to Overlay One Image on Another Using the Nokia Imaging SDK

I am pulling an image from the device's MediaLibrary and displaying it on the phone screen. In this process, I am resizing the image, while maintaining the aspect ratio, so that none of the image is cut off when displayed on the phone screen. I…
1
vote
1 answer

How to Save an Image from Nokia Imaging SDK

I am having issues with some sample code that I am using from one of Nokia's Imaging SDK samples they provide. Essentially I am trying to save an image to IsolatedStorage. The code that I am reusing has been used successfully elsewhere in the…
Matthew
  • 3,976
  • 15
  • 66
  • 130
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…