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

Is it possible to upload Lumia Living Images to OneDrive, instead of just the static image?

I have a windows phone and I am trying to upload the Lumia Living Images taken with Lumia Camera. Looks like there is no option to upload the Living Image directly to OneDrive, but only the static images. So wondering if there is any api available…
Adi
  • 51
  • 10
1
vote
1 answer

Extracting color components in Lumia Imaging sdk - custom filter

Can someone explain the calculation being used to extract color components on the right side of the following statements using bit shift operators? uint alpha = (currentPixel & 0xff000000) >> 24; // alpha component …
erotavlas
  • 4,274
  • 4
  • 45
  • 104
1
vote
1 answer

Exception When Rendering an Image Using Lumia Imaging SDK

In my WP8.1 app, I'm trying to crop an image using the Lumia (formerly Nokia) Imaging SDK. the image is retrieved using FileOpenPicker: public async void ContinueFileOpenPicker(Windows.ApplicationModel.Activation.FileOpenPickerContinuationEventArgs…
user3386180
1
vote
1 answer

CameraPreviewImageSource empty preview frame

I made cut and paste of the code below about how to use CameraPreviewImageSource and access to preview buffer frames, but do not work and it seems the frame buffer size is 0x0 reading the value of IImageSize parameter of OnPreviewFrameAvailable…
1
vote
2 answers

Rotate a CamerePreviewImageSource

I'm trying to rotate a CameraPreviewImageSource to make it appear (only) in portrait mode: private async Task InitializeAsync() { this.cameraPreviewImageSource = new CameraPreviewImageSource(); DeviceInformationCollection…
1
vote
2 answers

HRESULT: 0x8004C00F while using Nokia Imaging sdk

Here is how the Code looks. void ApplyFilter() { this.filterOperationInProgress = true; WriteableBitmap wBmp = new WriteableBitmap(0, 0); wBmp = LocalWriteableBitmap.Clone(); NokiaFilters nf = new NokiaFilters(wBmp,…
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