Tagged Questions
The image.createimage tag has no wiki summary.
2
votes
1answer
115 views
Image.getGraphics() returns null
Here is the code (I am extending JFrame in this class) (Point 'size' is the size of the screen):
setVisible(true);
backBuffer = createImage(size.x, size.y);
backGraphics = backBuffer.getGraphics();
...
2
votes
3answers
651 views
problem with imagecreatefromjpeg() php
I'm using imagecreatefromjpeg() function to merge two pictures..
now the problem which i'm facing is that when i use the pictures from my server, it works perfectly and when i use pictures from some ...
1
vote
1answer
166 views
Problem with imagecreatefromjpeg() function in php
I'm using imagecreatefromjpeg() function to merge two pictures..
now the problem which i'm facing is that when i use the pictures from my server, it works perfectly and when i use pictures from some ...
0
votes
1answer
101 views
PHP code not working on Facebook
I'm using this code to merge text with an image and it's working fine. But when I use this code with Facebook app, it doesn't show any output. Can anyone please help me sorting out the problem? As far ...
0
votes
2answers
87 views
Create transparent png with text from scratch in php
All the examples I've found on the web seem to create pngs with text from an existing png. Is it possible to create a transparent png from scratch and then add text?
The code ive got so far follows ...
0
votes
1answer
50 views
Leak due to CreateImageRefFromTileData
does somebody know what CreateImageRefFromTileData is about? It seems to be related to MapKit because it's occuring in a UIViewController where I display a map with some location-pins. Nothing more.
...
0
votes
7answers
2k views
Problems with createImage(int width, int height)
I have the following code, which is run every 10ms as part of a game:
private void gameRender()
{
if(dbImage == null)
{
//createImage() returns null if ...
0
votes
4answers
4k views
Image.createImage problem in J2ME
I tried this on J2ME
try {
Image immutableThumb = Image.createImage( temp, 0, temp.length);
} catch (Exception ex) {
System.out.println(ex);
}
I hit this error:
...