The image tag is for questions related to the loading, formatting, saving, compression, and display of images. This tag should also be used for assistance using various image libraries.
0
votes
0answers
5 views
image output in php with header('Content-Type: image/png');
I'm Using this code to uotput image but its not getting error but not display image too...
// Test image.
$fn = '/itunes.png';
// Getting headers sent by the client.
$headers = ...
0
votes
2answers
9 views
WPToolkit: TiltEffect Doesn't Seem to be Affecting Image
I have an image:
<Image Height="100" Name="imagePlay" Stretch="UniformToFill" VerticalAlignment="Center" Width="100" toolkit:TiltEffect.IsTiltEnabled="True" ...
0
votes
0answers
23 views
How to make custom close button in wpf?
I want to create following form but problem is there when I'm setting the margin with negative value then it will not work and hide my cross image. Is this possible to create as it is? or any other ...
0
votes
0answers
8 views
how to lock a rectangular object that can not be dragged using matlab
this is my code
citrargb = handles.citra;
axes(handles.axes_citra_asli);
% Selection of location
if isfield(handles,'api')
handles.api.delete();
rmfield(handles,'api');
...
0
votes
1answer
23 views
Using thumbnails on website [on hold]
I'm making a site that will let user's upload photos and then will display them on their profile. In order to speed up load times I want to either create a second image for thumbnails or display the ...
0
votes
0answers
8 views
Geckofx Getting Images
I am using geckofx C# web browser control. Is it possible to obtain the raw images files that the control downloads either as a byte array or .net Image type?
2
votes
0answers
20 views
Algorithm or math to project a GIF file size?
I have a user's animated gif file that is about 10mb. I'd like to allow users to upload it and let me host it on my server, but I'd like to rescale it to fit a maximum file size of 5mb to conserve ...
3
votes
2answers
34 views
Why do images that have a specified height and width render faster than those that do not?
It is a general best practice to set a height and width value for an <img> tag so that it will render faster, but why is this the case?
0
votes
0answers
12 views
One dimensional image rescaling
I am using a Java BufferedImage to draw a falling raster by adding new rows of data to the underlying raster and using it as a circular buffer. Here is the drawing method:
public void ...
0
votes
0answers
7 views
Python 3 media (images,sound) help/libraries needed
I managed to open an image through going through some old questions. I am a N00B in python with less than a week of experience. I want to be able to open images and sound in python 3. So far my code ...
0
votes
1answer
16 views
Link an image on the front page to post, but when the post is open link to the image. (WordPress)
I have a wordpress blog: http://technosting.com/
On my homepage each post has an image before it, this image is linked to the post. Also when the post is opened the same image is still linked to the ...
0
votes
0answers
13 views
Image Resizing on Different Browsers
I'm trying to make a website and everything works fine on certain browsers like Google Chrome and Safari, but it doesn't work on Mozilla Firefox and Internet Explorer.
Here's a link to how it looks ...
-1
votes
1answer
21 views
java 2d graphics array over an image
I have built a JPanel which is painted based on a 2D array of data which the user can draw on.
I'm wondering if it is possible to somehow allow the user to upload a background picture, then set the ...
0
votes
0answers
12 views
Layering Image over Flash XAML
I have a flash UI, and a image. I would like to place the image OVER the flash object, but I can't seem to get it working when using Panel.Zindex.
Here is my Code
<my1:WpfFlashUI ...
3
votes
1answer
31 views
Java KeyListener isn't detecting keyboard input
I'm trying to modify this program so that it draws an image of a castle and I am able to scale this image using the up and down arrow keys. I can't manage to get the keylistener to work, the program ...