Hi
Do someone know how to hide such help image from my custom wizard?
setHelpAvailable(false) doesn't work, it hides "rectangular help button", not this image.
Thanks
I am trying to change the background image whenever the document is loaded, and when it hits this point:
document.body.style.backgroundImage="url('../images/mobile-bckground.png')";
The page simply makes the background plain white. It is displayed like this in my javascript:
$(function() {
document.body.style.backgroundImage="url('../images/mobile-bckground.png')";
});
I have verified the image is in the right location, why is it doing this?
I would like to get at the raw image data, as in a pointed to a byte array or something like that, of the image output from a direct3d app without actually rendering it to the monitor.
I need to do this so that I can render direct3d as a directshow source filter
Visual studio 2008 c++
I am a beginner and for lack of a better way to put this, does MATLAB have a function that will "snap an image" or move an image to some predefined location if within a certain area? I have checked out some forums with no luck so far. Thank you so much for your assistance.
Hello all,
I have a ppt file with a slide with an wmf image in it and I want to "ungroup" the image elements in it using VBA.
Can it be done? and if so, how?
Thanks.
I am trying to do some research on file formats especially image formats. Information such as header layouts for particular types of image formats and how to parse them using C++. If anyone can point me in the right direction of some good tutorials or books. that would be helpful. thanks
Hey there. I am creating my first iPhone native app (beginner Objective-C). On my main menu title screen, i would like for the background image to move slowly to the left. Is it possible to tile a background image and have it move? I'm basically trying to have my clouds drift across the background. How would you accomplish this?
I have the following. A website that create temporarily images in the /tmp folder on the Linux server. The reason why I store it within this folder is since these images need to be cleared once in a while and it's so much easier just to clear the tmp directory using tmpwatch. Now my issue is to display the image within my browser?
Code
<img src="/tmp/3d34636.png" alt="image" />
I'm running Centos with PHP
I have a custom UIView with a UILabel and a UIImageView subview. (tried using UIImageView subclass aswell). I assign an image to it and add the view to the screen. I wrote a function which adds the amount of LetterBoxes to the screen as there are letters in the word:
- (void)drawBoxesForWord:(NSString *)word {
if(boxesContainer == nil)
{
/*
Create a container for the LetterBoxes (animation purposes)
*/
boxesContainer = [[UIView alloc] initWithFrame:CGRectMake(0, 205, 320, 50)];
[self.view addSubview:boxesContainer];
}
/*
Calculate width of letterboxes
*/
NSInteger numberOfCharacters = [word length];
CGFloat totalWidth = numberOfCharacters * 28 + (numberOfCharacters - 1) * 3;
CGFloat leftCap = (320 - totalWidth) / 2;
[letters removeAllObjects];
/*
Draw the boxes to the screen
*/
for (int i = 0; i < numberOfCharacters; i++) {
LetterBox *letter = [[LetterBox alloc] initWithFrame:CGRectMake(leftCap + i * 31 , 0, 28, 40)];
[letters addObject:letter];
[boxesContainer addSubview:letter];
[letter release];
}}
This gives me the image below:
http://www.imgdumper.nl/uploads2/4ba3b2c72bb99/4ba3b2c72abfd-Goed.png
But sometimes it gives me this:
imgdumper.nl/uploads2/4ba3b2d888226/4ba3b2d88728a-Fout.png
I add them to the same boxesContainer but they first remove themselves from the superview, so it's not like you see them double or something.
What I find weird is that they are all good or all bad.. This is the init function for my LetterBox:
if (self == [super initWithFrame:aRect]) {
/*
Create the box image with same frame
*/
boxImage = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height)];
boxImage.contentMode = UIViewContentModeScaleAspectFit;
boxImage.image = [UIImage imageNamed:@"SpaceOpen.png"];
[self addSubview:boxImage];
/*
Create the label with same frame
*/
letterLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height)];
letterLabel.backgroundColor = [UIColor clearColor];
letterLabel.font = [UIFont fontWithName:@"ArialRoundedMTBold" size:26];
letterLabel.textColor = [UIColor blackColor];
letterLabel.textAlignment = UITextAlignmentCenter;
[self addSubview:letterLabel];
}
return self;}
Does anyone have an idea why this could be? I'd rather have them display correctly every time :)
i am quite new to iphone development but i have been given a old application and told to change the launch image(default.png)..i tried to google it but couldn't get much help from it??
how can i change the default image in my old application?? any information regarding it will be really helpful??
Hey,
When I try to show a grayscale image using :
Img = imread('tr2.png');
subplot(111);
imshow(Img);
it does not appear as the original image. Where is the problem ?
hi,
I want to set brightness and contrast on the image that is selected from the photo library of iphone, is there any way to do the same using/not using open GLES.
I've got some code from the developer.apple.com but that is for a single image and i can't use images from photo library, do any one know please let me know how to this.
regards viral.
I have seen this image swirl effect on a visual thesaurus.
Is there any open source code for this? Or research paper explaining how they made it.
I don't care about the algorithm to match similar objects. I only am wondering about the effects.
From what i understand they are called recursive orbital diagram.
Screenshot:
google Wonder Wheel
google image swirl
hi,
I want to put images from my photo library in to the EAGL view for some further processing. The image that are already in our resources folder will be taken by itself but mltiple or images from photo library can't. So any one knows how to put image on EAGL view in open GLES.
Regtards viral
Hey, I'm trying to take a simple image, something like a black background with colored blocks representing walls. I'm trying to figure out how to go about starting on something like this. Do I need to parse the image and look at each pixel or is there an easier way to do it?
I'm using Java3D but it doesn't seem to have any sort of built in support for that...
Hi All,
I am using asp.net with C# [3.5]. I want to display Image before my URL in browser, like IE and mozilla used to have. I want to display my custom image.
Please help.
Thanks in advance
I'm interested in hacking one of those digital picture frames (like you see for sale at Walmart) so it fetches and displays an image off the web every 5 minutes or so. (I'm going to have it load a current image.) Any ideas on how to get started?
Hi
I am saving image in windows mobile application using C#.My code is
SaveFileDialog dialog = new SaveFileDialog();
if (dialog.ShowDialog() == DialogResult.OK)
{
aspectRatioPictureBox1.Photo.Save(dialog.FileName, System.Drawing.Imaging.ImageFormat.Bmp);
}
In the above code i am able to save only in folders of MyDocument But
i am not able to browse to save in other folders..
Please let know the code to save image through browsing the location
Thanks in Advance
I am trying upload images and than create an thumbnail of it and than store both in S3. After the file has been uploaded i am first uploading it to S3 and than trying to create thumbnail but it doesn't work as than PIL is not able to recognise the image. And secondly if I create the thumbnail first than while uploading original image I get EOF.
I think Django allows just once for the uploaded files to be used only once....Please kindly tell me a way to do so....Thanks in advance
There is a simple way with php, a simple script or URL manipulation to build a URL for the gravatar image corresponding to an email?
Ex. http://gravatar.com/avatars/[email protected] and this return a jpeg or png image.
If there is no simple way like the example, what is the easiest way you know to resolve a url of the gravatar corresponding to an email?. Thanks
Hi,
I have an image, that I need to rotate on ACTION_MOVE. Its a wheel image. The wheel should rotate as the user's finger moves on screen. Can anyone help on this please?
Thanks.
Hi all
i am new to this technology.
i have configured ESS server with Microsoft Outlook for sending email from simulator. But i am not able to send image as a attachment from simulator to outlook. html attachement is working fine.
Should i configure BES server with Microsoft Exchange for testing the image attachment.
is it possible.
can any one provide me suggestion.
Hey, I'm trying to mod rewrite the image locations on my site, I'm just using this :
rewriteRule ^thumbs/(.*)$ http://site2.com/images/$1 [L]
so that I can redirect all image requests going from
http://site1.com/thumbs/something to http://site2.com/thumbs/something
But only some of the images are loading, and not all of them.
Thanks!
What is the easiest way to duplicate an image variable in PHP.
Normally you can simply do $varnew = $varold.
But with a GD library variable if I did the above and then edited $varnew then $varold would be effected too.
Obviously one way would be to reopen the file or to make a new image and copy it into it. Is there an easier way?