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.

learn more… | top users | synonyms (2)

0
votes
0answers
4 views

Android animation setStartOffset issue

I am trying to show 3 images, one after another, which have separately animated alphas so they 'blink', and the animations must be looped. (If it helps the 3 images are curvy bits in a wifi symbol, so ...
0
votes
0answers
16 views

Optimizing slow external image sources

Recently I've been experiencing many slow page loads due to images not external image sources not loading correctly. One of the source I've managed to identify was a0.twimg.com. Many pages appear with ...
0
votes
3answers
29 views

How to parse http header to get uploaded file and save it to disk

I am developing a http web server in java using socket which gets post header InputStream and then I processed the header with some String split by the header 'boundary' and '\r\n' and got all ...
0
votes
1answer
15 views

imagettftext not displaying the image

I'm using the following code in the test.php file to generate an image from a text. <?php error_reporting(E_ALL); // Set the content-type header('Content-Type: image/png'); // Create the image ...
1
vote
1answer
18 views

Html table converting into a png image by java

I use html2image librarie to convert a html table into a png image ,but it doesn't work for me because it doesn't preserve the style and the look and feel of the table. here's the test code that i ...
0
votes
0answers
7 views

Android - ImageSlider but with WebView?

I want to use an image slider like this one but instead of images, I want to display swf animations (which can be done using WebView (as shown here), so when the user swipes left or right, it will ...
0
votes
0answers
9 views

ABPersonSetImageData doesn`t work

I have problem with saving images for ABPerson objects, functions doesnt return any errors (cfdata, record, _addressBook not equal nil). When I open my contacts list images are empty. That`s my code: ...
0
votes
1answer
10 views

How to optimize search engines for images that contain text?

The images are pure text. Can I make annotations telling which text those images contain?
0
votes
2answers
35 views

Converting a PNG to GIF using PHP

This should be fairly simple (given the tools on hand) but there's something I'm completely overlooking.. I'm trying to convert a PNG as a base64 URL to a GIF87a or a GIF89a GIF using PHP. I've got ...
0
votes
1answer
14 views

Compare Panel BackGround Image with Resource Image

I'm trying to check if my panel0.background image is the same with my image from resource then add some string to an arraylist. This doesn't seem to work: If (Panel0.BackgroundImage Is ...
0
votes
1answer
15 views

Getting a BufferedImage as a resource so it will work in JAR file

I'm trying to load an image into my java application as a BufferedImage, with the intent of having it work in a JAR file. I tried using ImageIO.read(new File("images/grass.png")); which worked in the ...
0
votes
2answers
19 views

PHP imagecreate with variable height

I need to create an image through php with a variable text inside. The images has fixed width and variable height since some times I have a really short text, other times a really long text inside it. ...
-3
votes
1answer
34 views

Django 1.5, images are not displayed, static files

I'm a fresher in Django 1.5 and I have some problems with images. I have images in my folder (C:\Users\Neitrosha\PycharmProjects\ecomstore\static\images\products) There are two folders - 'thumbnails' ...
0
votes
1answer
21 views

Display default contact photo when no photo assigned?

Here is my code which display the contact photos fine in my listview: bitmap = loadContactPhoto(getContentResolver(), id); if(bitmap!=null){ favIcon.setImageBitmap(bitmap); } ...
1
vote
2answers
21 views

How do I place images side by side in div? (wordpress)

I have been using the code from here but ever since I needed to wrap my images in a div, it doesn't work even though I changed the selector to images. Had to wrap images in a div to style it to have ...
0
votes
1answer
20 views

ReadFile image and then overwrite it - A generic error occurred in GDI

I just can't get my head around how to solve this problem. Tried most of suggestions I've found with no success. newMember.Me_Photo = ReadFile("C:/Users/Leta/Documents/Visual Studio ...
0
votes
0answers
13 views

Inappropriate argument value (of correct type) in Jython

Okay, so for an assignment I have to make a function crop() that will crop a picture in test_crop(). Here's the code. def crop(pict, startX, startY, endX, endY): width = endX - startX + 1 height = ...
0
votes
0answers
3 views

Image/bitmap in the Balloon Tooltip

Is it possible to have an image/bitmap(Not an icon) in a Balloon Tooltip that applications show from the Windows taskbar ? Thanks in advance!
2
votes
0answers
18 views

active appearance model (AAM) vs active shape model (ASM)

I was googling the last few days about active appearance model (AAM). I found a shape model and texture model and now I'm trying to do some research about active shape model (ASM) and I'm getting ...
0
votes
0answers
16 views

How to Control BitmapFactory FileNotFoundException with ListAdapter

I'm making an Activity where I show the contact list of the phone by their names and their photos. I use a Cursor and a Managedquery with a ListAdapter to adapt everything to a layout. It works nice, ...
0
votes
1answer
20 views

Android ImageView size unexpectedly changing at runtime

In one of my activities, I have a table layout with cells that are added at runtime via a custom class. The layout for my cells is as follows: <TableRow ...
1
vote
1answer
11 views

Read image file into a MongoDB document's binary field via mongo shell script

I would like to read an image file into a MongoDB document's binary field from mongo shell. I can do this in Java with MongoDB Java driver. However, I would like to be able to do with a mongo script ...
0
votes
1answer
13 views

Display Image using file picker in WinRT

Language : C#, XAML This is for the WinRT app. I am having trouble with the Image Source and am not sure what is the right way to display it. My attempt : // C# Uri Photo; FileOpenPicker openPicker ...
0
votes
1answer
8 views

background-size (CSS3) not working properly

#main{ position: relative; height: 60px; } #exit{ float: left; background: url(exit.jpeg) no-repeat; width: 230px; height: 230px; background-size: 60px 60px; opacity: .5; } <!DOCTYPE html> ...
1
vote
1answer
11 views

Load GridLayout images according to available memory

For an app I'm developing I have a GridLayout (not a GridView), which I populate dynamically with images. I could just load all the images at once (which is what I do now), but I do not have any ...
0
votes
1answer
11 views

On hovering mouse on image to zoom magento displaying zoomed image twice either on zoom and in background zoom block

I have uploaded 3 images of a product in magento, so when i am viewing my product on my site, on zooming it show number of images are 4 and on hover the zoomed images displays as it is in background ...
0
votes
1answer
35 views

How do I get my image to follow my mouse?

How do I get my image to follow my mouse anywhere on the screen? The below code makes the image move along the x axis. import java.awt.Color; import java.awt.Graphics; import java.awt.Image; import ...
0
votes
1answer
27 views

What is imagecreatetruecolor used for?

According to http://php.net/manual/en/function.imagecreatetruecolor.php it creates a new true color image but just further down is states: ... returns an image identifier representing a ...
2
votes
1answer
16 views

an error with django media and cache

I use from sorl-thumbnail. I have a model like this model from sorl.thumbnail import ImageField class Book(models.Model): title = models.CharField(max_length=255) thumb = ...
1
vote
1answer
23 views

PIL png resize to smaller resolution makes file size bigger

I'm resizing .png files with python's PIL. For some reason the file size is 3x times bigger than the original, even though I the resolution got reduced. So how do I save the file correctly? Test1: ...

1 2 3 4 5 1163
15 30 50 per page