image

Wrapping an image around 3d object for easy 2d printing

Looking for method for wrapping a 2d image around a 3d object, such as a helmet, and then unwrapping it back to 2d image to allow printing. For example, you have a photograph that you want to use to wrap a bike helmet. You do not want the image to be distorted even though it will be wrapped on complex 3d object. Once sized and positioned...

OpenCV can't read image!

I am using this code: #include <stdlib.h> #include <stdio.h> #include <math.h> #include <cv.h> #include <highgui.h> #include <cxcore.h> #include <cxtypes.h> int main(int argc, char* argv[]) { IplImage* img = cvLoadImage( "dow2oc8.png" ); cvNamedWindow( "Example1", CV_WINDOW_AUTOSIZE ); cvShowImage("Example1", img); cvWaitKey(0); ...

Image resize issue in PHP - gd creates ugly resized images

I am creating thumbnails of fixed height and width from my PHP script using the following function /*creates thumbnail of required dimensions*/ function createThumbnailofSize($sourcefilepath,$destdir,$reqwidth,$reqheight,$aspectratio=false) { /* * $sourcefilepath = absolute source file path of jpeg * $destdir = absolute ...

Input Type=Image "On" without onclick event

I have a form with an input type=image. It used to have a confirm in its onclick that returned true/false allowing/stopping the form submit. I've recently 'upgraded' to a non-modal dialog with a callback handler. Since the callback handler is non-modal, the return value to the input is always false, don't submit... When I submit upon...

Flickering element, not resolved

Hello, I have a PHP page with the following code: echo "function createimg() { var img = new Image(); img.src='path/to/image'; img.alt='Next image'; img.id = 'span1'; img.style.zIndex = 10; img.style.position = 'absolute'; img.style.display='none'; img.style.top = '130px'; img.style.padding='10px'; img.style.left='440px'; img....

Flex 3 - Saving an image of a component

Im currently trying to work the imageSnapshot function in flex. Ive been looking hard but I cant seem to find a solution to my problem. I wish to take a screenshot of one of my components, to capture the final output of my program, since a plain "printscreen" cuts off some of the output due to it scrolling. My current code looks like - ...

In C#, how do I determine if an image (jpg, gif, or png) is interlaced (non-progressive) or non-interlaced (progressive)?

How do I do this in C#? I looked all over the web but couldn't find an answer. ...

How to rasterize a string (mac)

I'm trying to take an NSString and rasterize it as a bitmap (an array of bytes (RGBA)) The closest I've gotten to any information on how to do something like this was in a forum post that suggested something along the lines of NSString *myString = [[NSString alloc] initWithString:@"This is a test"]; NSSize size = {256, 256}; ...

PHP data to chart to image to pdf

I would like to generate a chart from a dataset and eventually put it in a pdf format. How would I go about doing this? Which packages would you recommend? ...

jQuery image zoom with slider

Does anybody know of a jQuery plugin that can do something like this: http://www.endclothing.co.uk/catalog/product/view/id/5599/s/nike-leather-blazer-vintage-pre-order/category/4/ Im at a dead end. Thanks, A. ...

Experiences with RADactive I-Load

I've been looking for an easy-to-use, reliable and customizable way for the users of our ASP.NET web site to upload, scale, crop & rotate images. We currently have a homebrewn system that is very difficult to extend. I stumbled upon I-Load, which seems to do exactly what I want, but I have trouble finding pricing information, and appare...

Convert an image from CFHTTP filecontent to binary data with Coldfusion

I'm trying to convert an image (jpg) loaded via cfhttp to binary data. I can't use cffile action="readBinary" as it is not a local file. ...

Flex 3.4 - imageSnapshot question, linking images~

After some lovely help here earlier Ive almost finished the project Im working on. I thought i had it completed but Ive gone and ran into one final issue. My program takes a screenshot of the final output of my file, and the final output of my file has some linked images from URLs inside of it. Now when the images are excluded, it saves ...

Pipelined image transformations in C#

I'm trying to optimize out image transformation code. We currently allow our users to upload and crop images, but we're working on adding rotation into the mix, and the resulting images must be resized into three different sizes, with watermarks applied. The code I took over repeatedly generated bitmaps in each step; this means allocati...

image upload in html page

I am using the following code to upload an image to a web server <form name="uploadFile" action="upload.php" method="post" enctype="multipart/form-data" onSubmit="return validate();"> <input type="hidden" name="choice" value="upload"> <table align="center"> <tr> <td><span style="color:red;font-weight:bold">Upload files</span></td><td...

Javascript or JQuery for background image slideshow

Hi I want to create a slideshow using the background image of a div. I don´t want the images to rotate automatically, instead I want to use standard prev and next buttons to change the div´s background image. In total there will be around 6 images to scroll through. It needs to be a background image as the div has some other content in ...

Multipage jQuery image gallery

Is there any jQuery gallery, which support multipages? My problem is, that every page contains different number of images. I'm using Lightbox 2, but i can't see any way to configure the gallery with multipages. I can create 5-6 static HTML Pages, one page can contains one image gallery, but i think, this is not the perfect solution. Any...

C# Get the default icon of an exe file

Possible Duplicate: Get File Icon used by Shell In my program i am reading a directory of files and displaying them as a ToolStripMenuItem Normally i would use: item.Image = Image.FromFile("icon.ico"); But how would i get the default icon that a given exe uses: item.Image = Image.FromEXE("program.exe"); Is there a simple ...

Figuring out when images are loaded after they are inserted using jQuery.load('url.html')

I currently have something similar to this, it loads a div on the target page that has images in it. $('a.galleryNext').click(function(){ // chnage the image to loading $("#info").html("LOADING"); $("#currentGal").load("gallery.php div#gallery"+currentgallery, function(){ //this fires much too early, the images are s...

AWT libraries using Java 1.6 on Linux Server in a datacenter

I need to create and store thumbnails (of images from the web) and store them on the server. Can I use the awt libraries (as listed below) on a linux server running in a datacenter (without a monitor)? I do not know if the server has a graphics card or needs one for these libraries to work... import java.awt.GraphicsConfiguration; impo...