1,136 Topics

Member Avatar for
Member Avatar for CarterLangley

Hi guys, Got a problem uploading an image to a directory and then including that directory location into the database so that I can display the image. Here is the code I have so far. <div id="main_right"> <?php if ($picture) { ?> <img src="<?php echo "../images/teacher_photo/" . $picture ?>" alt="<?php …

Member Avatar for pritaeas
0
238
Member Avatar for LALITHA_1
Member Avatar for varshaholla

how to subtract the background in an image. i need only the object and the background should not be present. is it possible to get only the object? Any suggestions are welcome!

Member Avatar for varshaholla
0
115
Member Avatar for chaitu11

<?php header('Content-type: image/jpeg'); $source = 'a.jpg'; $watermark = imagecreatefrompng('logo.png'); $watermark_width = imagesx($watermark); $watermark_height = imagesy($watermark); $image = imagecreatetruecolor($watermark_width,$watermark_height); $image = imagecreatefromjpeg($source); $image_size = getimagesize($source); $x = $image_size[0] - $watermark_width - 10; $y = $image_size[1] - $watermark_height - 10; imagecopymerge($image, $watermark, $x, $y, 0, 0, $watermark_width, $watermark_height, 20); imagejpeg($image); ?>

Member Avatar for cilla
0
273
Member Avatar for Siberian

I'm hoping someone can help me. I'm looking for a image / video gallery that behaves in this mannor. When a link is clicked, the area of the page that is suppose to show the image / video gallery splats out, whereas, each title grows from invisible to visible just …

Member Avatar for Siberian
0
153
Member Avatar for webdi

I've set up my page so that my left nav bar is a series of background images which change when the user mouses over. I learned how to do this from an older thread on this site. [url]http://www.daniweb.com/forums/thread109916.html[/url] This all works well except for one minor problem. The first time …

Member Avatar for dellmerca
0
2K
Member Avatar for tony75

Hi As we know we can make image of HD and Clone Hard Disks and Partitions with dd.exe(http://www.chrysocome.net/dd) but How can I re-create a bootable disk from a raw image dd format to a bootable and executable HD installation?which commands I have to use? I appreciate your help

Member Avatar for tony75
0
2K
Member Avatar for ndeniche

i designed some images to put in the navbar... the idea was putting them so that when they're hovered, there is an image change to another image with bthe same design but different colors... when i pretended to do this i found a serious problem... if i insert the image …

Member Avatar for almostbob
0
2K
Member Avatar for Bensirpent07

I am trying to insert a background image but for some reason when I put this... html{ background-image: url('images/background.png'); background-repeat:no-repeat; background-size:100% 100%; } It doesn't seem to work, it stays blank. I know I have the path correct and the name correct I have only gone over it a million …

Member Avatar for rtrethewey
0
413
Member Avatar for Riu 2009

hi everyone, i want to store an image in database not by inserting but by updating (by using UPDATE query) and hers my code... everything else is updated successfully but its not storing image..please help me to solve the problem.. im using medium blob data type to store image this …

Member Avatar for Mani_6
0
15K
Member Avatar for dag25

i am trying to Upload and Store an Image inside a MySQL, for some reason i got a broken image when photo is submitted . i know its a bad idea ti store images in using database i am doing this for testing purposes. please help <!DOCTYPE html> <html> <head> …

Member Avatar for dag25
0
885
Member Avatar for SQLpower

Hello, So I basically created SQL Server Database and I got it working with displaying my images and drop downlist and everything, however, I want to make it to display an image only if a continent is selected. So if I select Europe, I would like to receive a picture …

1
121
Member Avatar for neha05

hello everyone, I need to add custom text on my uploading image ,any jquery or wordpress plugin is for that??

Member Avatar for neha05
0
310
Member Avatar for mmartel25

Hello, I'm having problems getting a repeating image to take up the full screen width outside of my page on the sides. The code of the page is what's tricky. I had someone else set up the page, and he coded it so the header image and menu stay still. …

Member Avatar for Tu Dinh
0
386
Member Avatar for cthulhumythos

I am trying to make images coming from links within my mySQL database appear next to each other. Here is my code: <div class="container-outer"> <div class="container-inner"> <?php if ( $imagePath = $article->getImagePath( IMG_TYPE_THUMB ) ) { ?> <a href=".?action=viewArticle&amp;articleId=<?php echo $article->id?>"><img class="articleImageThumb" src="<?php echo $imagePath?>" alt="Article Thumbnail" /></a> <?php } …

Member Avatar for JorgeM
0
641
Member Avatar for Sajoo

Hello I am working on Parallelization of Fractal Image Compression. I have used prof. Yuval Fisher's enc.c and dec.c fractal image compressor / decompressor. The code is working fine but my question is: How to view the RAW images lenna.dat(input image) and lenna.out(decoded image) on Windows/Sun/LINUX machine. I think there …

Member Avatar for Arun_8
0
368
Member Avatar for sureronald

An image resize script that I have written to scale images from a digital camera. I couldn't used the gimp (my favourite image editor) to scale each of them one by one. This script takes two arguments which are both directory names. The first one is the directory containing images …

Member Avatar for Budy_1
0
727
Member Avatar for vegaseat

Using the Python Image Library (PIL) you can resize an image. Several filters can be specified. ANTIALIAS is best for downsampling, the other filters work better with upsampling (increasing the size). In this code snippet one image of each filter option is saved, so you can compare the quality in …

Member Avatar for Budy_1
0
73K
Member Avatar for varshaholla

i'm taking the image from the user, and displaying it using label. Now i have to use that image for further processing. my code is: from Tkinter import Tk, Frame, BOTH from Tkinter import * import cv2 from collections import * from CBIR import * from experiment import * from …

Member Avatar for vegaseat
0
887
Member Avatar for archana.khare.395

I want to create a button dynamically (image, image button or simple button) to show text and image both, in asp.net using C# . But I am not able to do it because its shows either image property or text property. How to do it please help me.

Member Avatar for sushmaja.arumalla.9
0
163
Member Avatar for KushMishra

Hi All, I am facing some issues when writing a xaml and my code goes as follows :- <Grid> <Grid.Resources> <!-- Shared Storyboard across the system --> <!-- This storyboard will make the image (button) grow to double its size in 0.2 seconds --> <Storyboard x:Key="expandStoryboard"> <DoubleAnimation Storyboard.TargetProperty="RenderTransform.ScaleX" To="2.5" Duration="0:0:0.2" …

0
227
Member Avatar for ParPau

All, what I am trying to do is isolate markings (differences) in images. I have an unmarked image (I1), a marked image (I2) and a third image (I3). I would like to compare I2 against I1 and store the x,y (or array of pixels) of the differences (isolate markings). I …

0
176
Member Avatar for vanitha.A
Member Avatar for urtrivedi
0
145
Member Avatar for varshaholla

hello, i want to know whether i can display an image from the path i have selected? like, i have a path for example: c:\user\desktop\33.jpg, and i want to take only that jpg file and i have to display that image using label or something. If it is possible, i …

Member Avatar for varshaholla
0
330
Member Avatar for naveen1993

Help me with ur inputs, how to insert and move the image using C language.. we can use by using "Type Argument Approach" to move the image??

Member Avatar for Ancient Dragon
0
110
Member Avatar for kristian.ssyn

Hi! I'm just new at GUI programming and I've been busy creating a GUI for my project. My image won't show up in this particular code. I've made two other classes and the images load perfectly. import javax.swing.*; import java.awt.image.*; import java.awt.*; import java.awt.event.ActionListener; import java.awt.event.ActionEvent; public class Battle implements …

Member Avatar for JamesCherrill
0
261
Member Avatar for rainingblessing
Member Avatar for rainingblessing
0
311
Member Avatar for sathyagovin

Hi, I am using image upload for REGISTRATION page. I am able to upload images and also database works. My problem is that i get the "Undefined index: emp_image in C:\wamp\" when the image upload page is loading itself. This error is for about 10 lines when i open the …

Member Avatar for dinhunzvi
0
675
Member Avatar for chrisschristou

hello daniweb friends. sorry for my title i didn't find how tell shortly or exact my problem. so i have a div in header which in i have image as site logo and near i have form "search form" i want to make near, face to face. but what i …

Member Avatar for rtrethewey
0
214
Member Avatar for BTLSP
Member Avatar for BTLSP
0
125

The End.