Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
7answers
13k views

WPF - Image 'is not part of the project or its Build Action is not set to Resource'

I have a project which requires an image in the window. This is a static image and i added through 'Add>Existing Item'. It exists in the root of the project. I reference the image in a test page ...
9
votes
5answers
431 views

Create Video from ImageSource

Is there any easy way of adding ImageSources to a stack and create a video from it?
5
votes
1answer
4k views

Embedding resources (images, sound bits, etc) into a Java project then use those resources

I have searched for a method of embedding a resource in a java project (using Eclipse v3.6.0) then using that embedded resource within a control (e.g., JLabel). I have seen methods of referencing ...
4
votes
4answers
951 views

how to show image not found in Asp.net MVC

I have a asp.net mvc project. in a speicific views i call the four image from different different folder inside my proect. sometime image can not be found. i want to set a image for every folder ...
3
votes
1answer
101 views

how to display images by using db response like lazylist concept?

i am new developer in android application.i am working on display the images from .net db services.i am communicating with .net web services by using SoapObject class.when i send the request for get ...
3
votes
4answers
416 views

BitmapImage to byte[]

I have a BitmapImage that I'm using in a WPF application, I later want to save it to a database as a byte array (I guess it's the best way), how can I perform this conversion? Or, alternatively, is ...
3
votes
3answers
1k views

Loading image into ImageSource - incorrect width and height

My problem is that the image loading seems to be uncorrectly from application resources. This is code: BitmapImage bi = new BitmapImage(); bi.BeginInit(); bi.UriSource = new ...
2
votes
1answer
83 views

still memory-leaks in .net4 - binding memory BitmapImage to Image-Source

I know very similar questions were asked here in the past - but neither had a solution for my problem: I load a image from memory into a BitmapImage: private static BitmapImage LoadImage(byte[] ...
2
votes
3answers
542 views

Python Scrapy: Convert relative paths to absolute paths

I have amended the code based on solutions offered below by the great folks here; I get the error shown below the code here. from scrapy.spider import BaseSpider from scrapy.selector import ...
2
votes
1answer
236 views

Dispose StreamResourceInfo.Stream

I use StreamResourceInfo.Stream to get BitmapImages from resources. Is it correct to Close and Dispose the stream after using it? I ask because in memory profiler, I get an error if I do so. Memory ...
2
votes
1answer
202 views

Can't use parseInt for images - Android

I have a problem with putting different images in a list. I created a custom list and everything worked fine, except the images issue. My issue is with these line - Integer p = ...
2
votes
5answers
114 views

What is the best way to detect that a URL is that of an image?

What is the best way to detect that a URL is that of an image?
2
votes
1answer
194 views

How to convert a ViewBox to an ImageSource?

I'm using a Viewbox to create a set of icons that I will dynamically bind to a WPF view. I'm binding to the resource name and using a Converter to convert the resource name to an ImageSource. I know ...
2
votes
1answer
959 views

How to convert 'System.IO.IsolatedStorage.IsolatedStorageFileStream' to an ImageSource?

The question is clear: I am trying to Convert an "System.IO.IsolatedStorage.IsolatedStorageFileStream" to an ImageSource but have no clue of how I could do this. I've seen severals articles that talk ...
2
votes
2answers
1k views

Image source winforms

Hi how can i set image source to an image in winforms? my images are in Resources folder in the application only I tried like this PictureBox pb = new PictureBox(); pb.Image = ...
2
votes
1answer
806 views

WPF- How Can I Show a Cropped Region of an ImageSource in an <Image> Control?

WPF- How can I show a cropped region of an ImageSource in an control? I have an ImageSource of a vairable size in pixels. I have a caculated crop rectangle, indicating how much of the image we are ...
1
vote
1answer
99 views

Programmatically set the background of a button to be an image

how can I programmatically set the background of a button to be an image? I know how to do it in XAML, but in code, I keep getting stuck, I tried Button.Background = new ImageBrush{ ImageSource = ...
1
vote
1answer
46 views

xaml: Can't get image binding to work

I'm trying to do some databinding, but I can't get the image to show. This is what the xaml looks like: <ListBox Name="tListBox" Margin="0,0,-12,0"> <ListBox.ItemTemplate> ...
1
vote
1answer
269 views

Imagebrush image source binding converter

I'm using an xml as source of my application via binding. in the xml there is a list of folders and a path for a sample image for each folder. The folder list is binded to listbox, and another ...
1
vote
2answers
86 views

Compressing Image Source path in Javascript

I have a web app which replaces few img's with other img's. For example: Image with path http://example.com/example/example/images/dir/1.gif is repalced with http://cdn.example.com/dir/1.gif. To do ...
1
vote
1answer
420 views

Get Imagesource from Memorystream in c# wpf

How can I get ImageSource from MemoryStream in WPF using c# ? or convert MemoryStream to ImageSource to display it as image in wpf ?
1
vote
0answers
140 views

Is it true that use “BufferedImage” will get performance for loading images in wicket?

As to diagnose the best performant way in wicket for loading images by using "bufferedDynamicImageResource" and "static image resource path", I've tried the following sample: using "BufferedImage" ...
1
vote
2answers
110 views

file paths for locally hosted site

I'm learning how to make an image gallery with jquery. the images file path is this for the final site. <img src="images/gallery/refraction_thumbnail.jpg"/></a> but when I'm loading it ...
1
vote
2answers
904 views

WP7 Silverlight — tapping image in a stackpanel scrollview to show that same picture in another grid

I am probably the absolute worst "coder" trying to create a Windows Phone 7 app, but I am in dire need of help, and some of you may even consider it to be laughably easy (which it probably is). My ...
1
vote
1answer
278 views

How to use relative path of Silverlight app in image control inside user control?

I created a custom user control which contains an <Image /> control. My user control is bound to a CLR object which contains the proper filename to use for the <Image> Source property. ...
1
vote
4answers
509 views

Simple HTML problem with href

I am trying to create images hyperlinked to some URL's and hyperlinks donot seem to work. I am using the code as given below at http://windchimes.co.in/index_w%20-%20Copy.html Can you tell me why ...
1
vote
1answer
1k views

Issue binding Image Source dependency property

I have created a custom control for ImageButton as <Style TargetType="{x:Type Button}"> <Setter Property="Template"> <Setter.Value> <ControlTemplate ...
1
vote
3answers
304 views

Handling Multiple Images with ColdFusion and MySQL

This is an architecture question, but its solution lies in ColdFusion and MySQL structure--or at least I believe so. I have a products table in my database, and each product can have any number of ...
1
vote
2answers
3k views

wpf change image source

I know this is an easy question but I can't figure it out or find the answer anywhere. I'm just trying to change the image source during runtime in WPF using C#. Whenever the code runs, it just ...
0
votes
1answer
22 views

IMG tag does not bring image

I have a web application, where i am storing all the images in a folder which is totally outside WEB-INF folder or webroot folder. When the jsp to display the image is called, before displaying it, i ...
0
votes
1answer
17 views

images not loading in Internet Explorer. why?

ive been finally polishing off a website i was building but to my dismay i recently checked the website in Internet Explorer and found the images weren't loading fully.. you can see can the borders ...
0
votes
0answers
25 views

phpQuery gathering javascript images

I'm currently using phpQuery to gather information from a passed in URL. I have things working and I'm able to search through DOM elements to gather all images like so: //loop through all images on ...
0
votes
1answer
74 views

How do I implement a DependencyProperty on a custom wpf control for an ImageSource?

How do I implement a DependencyProperty on a custom wpf control for an ImageSource? I created a custom control (button) which amongst other things does display an image. I want to be able to set the ...
0
votes
1answer
127 views

Saving source string of image in richtextbox after moving or pasting from clipboard

I'm working on richtextbox, which can handle images. I'm saving xaml content of richtextbox to database as string. Images are saved in the folder tree. And I have one problem: When I insert image to ...
0
votes
0answers
76 views

Using PNG with transparency over a resource as input for further WPF stuff

Following initial situation: A used framework needs an ImageSource as input for rendering a special item in the GUI. The samples shows this code to fulfill this: Uri uri = new ...
0
votes
1answer
71 views

ImageSource Class on MSDN Mistake?

I am unclear of what this means from the definition on ImageSource class on MSDN: Represents a object type that has a width, height, and ImageMetadata such as a BitmapSource and a DrawingImage. ...
0
votes
2answers
132 views

Changing a Image Source at runtime does not display the image

I am trying to display an Image within a ListBox.ItemTemplate depending on its binding value, the binding value is the status of an object (pending, retrieved, posted, complete or errored), here is ...
0
votes
1answer
255 views

Jquery cycle advance pager - how to call different thumbnail imagesource?

I am using the following markup to set up my jquery cycle slideshow. However, I would like to figure out how to implement thumbnails with a different image src. If my enlarged image src is ...
0
votes
0answers
104 views

Image Source property, binding to image in Resources.resx file in XAML, how to?

I have a Resources.resx file, which contains localized strings and also localized images. How do I bind an image to a property in XAML similar to the way a localized string is done (i.e., ...
0
votes
1answer
311 views

Howto export jQuery flot graphs as images?

Is it possible to save graphs build with flot as images? If yes, how?
0
votes
0answers
202 views

How to update a RibbonButton image programatically

I am using the Office Ribbon in XP. I needed a ColorPicker but couldn't use RibbonGallery because it available only for Windows7 and I need to support XP. I have adapted a colorpicker based on a ...
0
votes
5answers
258 views

Dispay local image in UIImageView

how do I display an image in the UIImageView component from the hard drive? I have a local folder called "images" and would like to access it via a relative path, since I want to package the images ...
0
votes
1answer
211 views

Exception during fetching the image from webserver in android

Hi i am getting the following exception while fetching the image from server. I works for fetching 5-7 images after that got the following: 06-12 16:35:50.904: WARN/AsyncTask(717): ...
0
votes
2answers
215 views

How can I get stop the button control in Windows Phone from making that ugly white flash when clicked?

So I have a few items in a list that I display on my MainPage. I have a button that looks like this: <Button Grid.Column="1" Click="Button_Click" BorderThickness="0" Height="40"> ...
0
votes
2answers
312 views

Threading with WPF Images (System.InvalidOperationException)

I'm using a thread to get an image from a website and shoot it back to the parent form (WPF) to display. I ran into an issue and have managed to debug it to this example: public void Watch() { ...
0
votes
1answer
796 views

CouchDB/Cradle How do I add images?

So Basically I want to let the user have the option of uploading an image when they register. I have no idea where to start forever. I know that CouchDB supports attachments, but how exactly does that ...
0
votes
2answers
223 views

Create a BitmapImage from ushort[]

Is it possible to create a BitmapImage from a ushort array? and if so how? At the minute I'm creating a Bitmap, converting it to a Bitmap array and displaying it, but this is too slow, I need to ...
0
votes
2answers
318 views

Internet Explorer does not load images cross domain

I am using Qualtrics to create a survey. In the survey I included pictures using html from a different website. It works in ALL browser but Internet Explorer 8 just doesn show pictures cross domain. ...
0
votes
2answers
291 views

Images load in IE but not Firefox or Chrome

Hey, I have been working on this site and on the computer I made the site everything seems to be working fine but when I test on another computer the sponsor images seem to try to load in Chrome and ...
0
votes
2answers
572 views

How to bind an ImageSource object directly to an Image source in XAML/WPF

I got the following XAML code: <ListBox ItemsSource="{Binding Languages}"> <ListBox.ItemTemplate> <DataTemplate> <StackPanel> ...

1 2