I have an existing WM application that I need to capture photos with and it looks like the Imaging class in OpenNETCF v2.x is the best bet because I am running into the "Out of memory" exception when simply trying to open the files. The application is built on a vendor's mobility platform and it appears that their assemblies leverage OpenNETCF v1.4 (which I don't have access to to recompile them with the newer version of OpenNETCF). When I simply add a reference to the new version of OpenNETCF, the mobile solution fails to run. Is there a way to reference multiple versions of the OpenNETCF library or am I stuck in the water? Or is there a way to create a class library for the imaging part of it that does not require a reference to the new OpenNETCF libraries in the base application?
Need to utilize OpenNETCF v2.x Imaging in application that has assemblies built on OpenNETCF v1.4
190 Views Asked by Ryan Allan At
1
There are 1 best solutions below
Related Questions in .NET
- Does compiler optimize operation on const variable and literal const number?
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- What is this namespace ITypeOfObjectsBoundToListBox ? Couldn't find it
- .net rest service with JSON string and consumed with java client
- What is best way to check if any of the property of object is null or empty?
- Telerik's WPF RadColorPicker NoColorText property not working
- Possible consequences of duplicate ProgId for different classes
- How are multiple requests to Task.Run handled from a resource management standpoint?
- Optimizing C++ call from C#
- Make a per-web-application object available to Web API and SignalR controllers
- System.ComponentModel.DataAnnotations.Schema namespace conflict
- LINQ Except/Distinct based on few columns only, to not add duplicates
- Not displaying content by its URL string - absolute urls
Related Questions in COMPACT-FRAMEWORK
- C# Find visible button by tag name and perform click (Compact Framework)
- Application self-closing on demand
- Padarn OpennetCF Socket Connection is Closed
- Using DataTable from another form
- CreateParams in the Compact Framework
- How to set a specific timezone for windows CE By C#
- (C#) How to Change InputLanguage in .NET CF?
- Progress Bar For Compact Framework with RTL Layout
- Webbrowser in compact framework
- running compact framework code on desktop computer
- Right to Left Layout Property in Below Code
- STAThread requirement for windows forms
- Draw Bezier curves in the CompactFramework
- Does Bringtofront() go before or after ResumeLayout? Does it matter?
- Include 'timestamp' into hash signature with C# and Compact Framework
Related Questions in IMAGING
- Gamma Correction in image processing
- No module named cv2 error
- TIFF 204x98 DPI screen dimensions
- ITK/SimpleITK DICOM Series Loaded in wrong order / slice spacing incorrect
- disparity for points in the unrecitifcated image
- How to darken image using x-window lib in linux
- The _imaging C module not installed Python Embedding
- Unsupported Pixel Format of source or template image. AForge Imaging
- Performing Camera Calibration Checkered board pattern
- What's the usual approach to handling images of formats that can't be displayed in browser by imaging controls?
- Dragging graphics objects on top of bitmaps
- 32bit rgb bmp to 24bit rgb bmp in C# problem
- How to identify non-photograph or 'uninteresting' images using Python Imaging Library (PIL)
- Is there any good python library for generating and rendering text in image format?
- JPG cropping in batch to generate square thumbnails
Related Questions in OPENNETCF
- Checking possibility of Wifi connectivity with Windows Mobile Pocket PC
- Prevent User from running applications on windows CE
- Serial, RS422, In C#, TxDone Event Not Firing, No Data Being Received
- How do I dispose of a LargeIntervalTimer
- How to make custom event for all SmartParts?
- WiFi - OpenNETCF.NET 2.3 - NearbyAccessPoints returns only AP's with low channel numbers
- Long build time in VS2008 Mobile Application
- OpenNETCF RAPI exception can not be catched
- Issue with custom drawn TextBoxes and KeyDown/DoubleClick methods
- Compact Framework file Upload via FTP
- No Windows CE in the OpenNETCF dll file
- OpenNetCF - Stay Connected to Ad-Hoc Network
- Need to utilize OpenNETCF v2.x Imaging in application that has assemblies built on OpenNETCF v1.4
- Detect if Windows CE PDA is connected to Network
- Handle the event when device connect to cradle windows ce opennetcf in C#
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You've got a couple options.
Assembly.LoadFromearly on and making it load the local 2.3 versions.