Let me start by saying PHP isn't my forte, I'm usually reluctant to try working with it because of problems exactly like this. The code works fine on my local machine under MAMP and on my server, but doesn't on the clients server :'(
So what am I trying to do, well - save an image from Flash onto the server, simple right?!
I'm using th...
Hy,
I have two options to choose from:
Client side(with FLASH or Javascript):
pro: image manipulations occurs on the client side, so no load on the server
cons: more uploaded data
Server side(Ruby on rails):
pro: less uploaded data
cons: image manipulations occurs on the server side, so there are some load and will be queried...
F...
Hi all,
I am really getting mad since 2 days with a stupid problem. I already have asked the question here but seem like my question in lost where nobody will see it again. So here is my simple problem :
I have a project containing a CustomControl (a library project), this custom control code is inherited from the Window control. So it...
I want my image wrapping with text align like this
text text text text text
text text text text text
______ text text text
image | text text text
image | text text text
image | text text text
_____| text text text (end)
I've tried this < DIV style="text-align:justify; text-justify:newspapers; padding:10px; font-siz...
Hi Everyone,
I searched on how to check if a TIFF file is corrupt or not. Most suggests wrapping the Image.FromFile function in a try block. If it throws an OutOfMemoryException, its corrupt. Has anyone used this? Is it effective? Any alternatives?
...
Hi,
I am having problems creating a thumbnail from an uploaded image, my problem is
(i) the quality
(ii) the crop
http://welovethedesign.com.cluster.cwcs.co.uk/phpimages/large.jpg
http://welovethedesign.com.cluster.cwcs.co.uk/phpimages/thumb.jpg
If you look the quality is very poor and the crop is taken from the top and is not a res...
Hi all,
I am developing a small application to get some picture from a scanner.
What is the best option (free) to get the picture from the scanner?
Already tryed with the WIA, but always gives me this error HRESULT: 0x80210015
...
I have a pictureBox on a Windows Form.
I do the following to load a PNG file into it.
Bitmap bm = (Bitmap)Image.FromFile("Image.PNG", true);
Bitmap tmp;
public Form1() {
InitializeComponent();
this.tmp = new Bitmap(bm.Width, bm.Height);
}
private void pictureBox1_Paint(object sender, PaintEventArgs e) {
e.Graphics.DrawIma...
I have a function that is called on the window.onload event to create a group of images and render via the scroll event.
function LoadImages(){
var foldGroup = new YAHOO.util.ImageLoader.group(window, 'scroll');
for(var i=0; i<someCounter; i++){
var locationId = locationsArr[i];
foldGroup.registerSrcImage('Loc...
I have this snippet of ActionScript code that is supposed to resize an image to fit the sprite: (as in rescale the image not just clip it)
package
{
import flash.display.Sprite;
import flash.display.Bitmap;
import flash.events.Event;
public class Main extends Sprite
{
[Embed(source = 'img.png')]
pr...
I used jquery stepcarousel plugin and it works fine... But how to preload images that is used by the plugin... I am using this,
<div id="mygallery" class="stepcarousel">
<div class="belt">
<div class="panel">
<img src="Images/img1.jpg" />
</div>
<div class="panel">
<img src="Im...
I want to create something like a leaflet/magazine using Latex. Is it possible to place text on top of an image and style the text freely?
Any links to examples of something like this?
...
I am having a image in one page and i have to crop the image to the predefined borders to crop this should happen using jquery and it has to be done in C# and ASP.Net and this is done by using Client side not the server side.
but the X and Y coordinate values must be saved in hidden fields and used for backend
plz reply me ASAP it is ve...
Hi
I have done a bit of searching for a solution to wrap text around an image and came across the JQSlickWrap.
http://stackoverflow.com/questions/2457266/jquery-plugin-to-wrap-text-around-images-support-ie6
But it is not working in IE. Is there another way to wrap text around an image? Or is that just not possible for IE yet?...
Great...
How to set background Image of JOptionPane? I want to show a different image on background of an JOptionPane.
...
I have an image control with a source image located in my c drive. I get a message that the image is being used by another process whenever I try to delete the original image to change it with another one dynamically. How do I release the image from the image control to be able to delete it.
I tried this variants:
string path = ((Bitma...
I am trying to make a simple photo gallery website. Using ASP.NET and C#.
Right now I don't have a server set up but I am just using the development one that Visual Studio Starts when you make a website project and run it.
I have a folder on my hard drive that contains an unknown number of images. I want to write a piece of code that w...
hello
how can i read image from clipboard ?
i was only able to raed text using wx.clipboard. but not images
is it possible to read images with wx.clipboard?
or there is another way?
i use python2.5 and windows vita 64 bit
thanks in advance
...
Hi
this is probably something really simple but I cant see what!
Any images I have in a masterpage aint showing in child pages,
all i get is the box with the red cross in it.
Dont think Ive done anything different from usual and its not something thats
happened in other sites so im kinda scratchin my head with it.
Any ideas appreciated!...
I cannot seem to figure out a way to read binary data from SQL server into PHP. I am working on a project where I need to be able to store the image directly in the SQL table, not on the file system.
Currently, I have been using a query like this one:
INSERT INTO myTable(Document)
SELECT * FROM
OPENROWSET(BULK N'C:\image.jpg',...