image

Image display in asp.net mvc

i can't display the image on my aspx view.. i'm using mysql as database i have this code for my model: Imports Microsoft.VisualBasic Imports System.Data Public Class ClassPhotosConnection Inherits ClassConnection Public Function pictureSelect() As DataTable Return ReadData("SELECT * FROM pictures") End Function En...

Silverlight - Taking a "screenshot" from within silverlight itself?

This is kind of vague as the control has not been designed yet and I thought I would ask before going with it. I will have a control that shows an object within Silverlight. The user can rotate the object etc. Now, the user needs to be able to copy what they see to an image. Is this possible somehow, or do I have to render it somewhe...

How to change the image in a cocos2d sprite from an array?

Hello! I'm trying to change the image that a sprite from an array is displaying. Here is the code I'm using: ((Sprite *)[enemiesArray objectAtIndex:index]).image = baseImage; I get the error message: error: request for member 'image' in something not a structure or union What am I doing wrong? Thanks for reading. ...

How to Load images after page load completed in ASP.Net

I need to load images after page load completed in ASP.Net without using JQuery. Is it possible to implement this feature only using asp.Net 3.5 and ASP.Net AJAX? If it is then how to implement? ...

jQuery select option image

Hi All, I want to display an image in the options of select box. How can i do it in javascript/jquery in CHROME. image text ...

MATLAB: showing an image in its original size

Can we show an image in its original size in MATLAB? Right now when we are showing, it is exactly fitted to the image window size. However, I want to show the image in its original size. When the image is of larger size, a scroll bar should appear in the image window. This would allow the user to view the image in its original size. A...

Create a G3 fax image with an ASN.1 wrapper for ldap photo

How can I create "An object encoded in G3 fax as explained in recommendation T.4, with an ASN.1 wrapper to make it compatible with an X.400 BodyPart as defined in X.420." in C#, starting from any standard .NET image/bitmap objects? This is the LDAP definition of the photo attribute. ...

Navigation bar overs top portion of my view.

I have an application with a tab bar controller and a navigation controller. In one of the child content views of the navigation controller, I have a image view at the top and some buttons at the bottom. The problem is that the navigation bar obscures the top portion of the image view. My content view is loaded from a NIB file and the im...

VB.NET: Resize an image (jpg,gif,png) to avoid out of memory error in Picturebox Control on .NETCF 2.0

I'm searching for a solution to resize image(jpg) being passed in from an array in Picturebox Control on .NETCF 2.0 in VB.NET without resorting to using the opennetcf library, is it possible? ...

how to set background image in a dialog box in vc++6.0

how to set background image in a dialog box in vc++6.0 ...

Naming and organizing images

What's the general rule of thumb while naming dynamic / user-uploaded images. For instance, profile pictures. Is there a benefit for filenames to be human-readable (joshmason_profile.jpg) and not something random (sjdir2311.jpg)? And how do you organize them? All in a single folder with filenames in database? or dynamically generated f...

insert a image in the ImageList at the perticular index

I want to insert a image in the ImageList at the specified index or you can say that replace the existing image at the perticular index but the Add method can'nt able to resolve this issue , imageList.Images.Add("w",Image.FromFile("C:\Folder.jpg")); Or, imageList.Images[listView1.SelectedItems[0].Index]. ???? what can i do???? ...

Modifying a LGPL licensed image to create iPhone app icons.

Hi, I would like to use icons under the LGPL license in an iPhone application. I want to modify these icons (size, color or more advanced editing) in order to fit my app requirements. I understand that the modified versions inherit the license. But embedding the app in an iPhone makes it harder to share the images and license files. M...

Recommend iPhone library for image gallery?

I would love to use a UIImagePickerController to browse and view images from my app's bundle. However this functionality doesn't seem to exist. Is there a library that replicates the functionality of the photo browser, but can use a list of images from the app bundle? ...

Adding images to SubVersion through Visual Studio using AnkhSVN - issues?

Hi, For the most part, AnkhSVN is working well with VS2008. The only issue I'm seeing is when an image is added from one dev, it is not added to any other machines when the SubVersion Update to Latest Version is executed. The log file shows that the image was in fact added and submitted to SVN, but no file is downloaded added locally....

image displayed inline with sifr3 text hidden

When sifr is loaded, the images i have loading inline with the H3 tags are covered up: http://dearearth.net/eco%5Ffabrics.html I know this is a known issue. Any help? Thanks! (also, explain in detail when possible, please) ...

uploading photos with java and sqlite

I need to upload photos into my application and save them to my sqlite database. I am using the swing filechooser to choose the file then I am converting the file to a fileinputstream and reading the it into bytes. File file =PictureChooser.getSelectedFile(); FileInputStream fis = new FileInputStream(file); byte[] photo = new byte[500...

Image border manipulation in C#

I have a need to resize pictures on a website I'm making for my company. The pictures must be a very specific size, and if the proportions are not correct I must be able to pad the image with a border to make it 'fit'. I'm not sure what the best way to approach this problem is. My knee-jerk was to simply add Rectangles to the image on...

how does data clustering help in image or pattern recognition

I have been playing around with different data clustering algorithms working on finding clusters between random data points represented an nodes, I keep reading that data clustering is used for image recognition. I am failing to make the connection, how does clustering data help in recognizing an image or in facial recognition. can someo...

Combined image rotation & cropping in jQuery

We currently have a system for cropping images that uses jCrop on the front-end, and System.Drawing in .NET on the backend - this works very well, but now we need to introduce image rotation. Only 90 degree angles are needed, and jQuery.Rotate works fine in isolation, but I would like to combine these two jQuery plugins gracefully. Do yo...