0
votes
1answer
13 views
Saving images client-side for compression/manipulation before upload to server
I've developed a PHP script to upload images to the server. It uploads the image, then reduces the image height, width and resolution server-side, thus reducing the file size a gre …
1
vote
6answers
162 views
Effective Interpreted Programming Language for File/Image manipulation
I need to make a script to read images from a directory, rename them, resize them to a MAX_HEIGHT, MAX_WIDTH, put a watermark logo and save them in JPG.
I was thinking on doing th …
0
votes
3answers
38 views
Python Tesseract OCR question
I have this image:
I want to read it to a string using python, which I didn't think would be that hard. I came upon tesseract, and then a wrapper for python scripts using tesser …
0
votes
1answer
63 views
Google Python Image Library - How to resize an image based on its width?
Hi all,
I have this code to make a resize of an uploaded image as a thumbnail.
project.thumbnail = db.Blob(images.resize(self.request.get("img"),188,96))
However, it does not d …
0
votes
2answers
31 views
PHp - memory error when resizing a PNG image
Hi all,
I have a script that creates a thumbnail out of an uploaded image. it works fine with jpgs, but gives me an error
Fatal error: Allowed memory size of 67108864 bytes e …
1
vote
2answers
37 views
How to split an animated gif in .net?
How do you split an animated gif into its component parts in .net?
Specifically i want to load them into Image(s) (System.Drawing.Image) in memory.
======================
Based …
1
vote
7answers
141 views
How Is The Structure Of a Image
Hello,
I'm thinking to build a library to manipulate images(my own image type that I will develop), but first I need to understand the structure of a image
How it is mounted?
Ab …
1
vote
3answers
40 views
XSLT: Obtaining or matching hashes for base64 encoded data
I need to find a way to find a way to find the hash for the base64 encoded data in the XML node //note/resource/data, or somehow otherwise match it to the hash value in the node // …
0
votes
2answers
59 views
Imagemagick thumbnail generation with php - using -crop
Hi there,
Long ago I created a small library for resizing images using imagemagick through system(...) because I did not feel that the build-in imagemagick functions for PHP were …
1
vote
2answers
36 views
Javascript image handling library
Hello,
I need to some extra functionalities to a website regarding image handling.
The user must be able to pane, zoom and rotate images on a image gallery.
Is there any free j …
0
votes
3answers
36 views
new Bitmap OutOfMemoryException in CF 2.0SP2
Hello.
I have this code:
if (archivoBinario != null)
{
MemoryStream ms = new MemoryStream(archivoBinario);
Bitmap imagen = new Bitmap(ms);
PicBoxImagen.Image = imagen …
1
vote
1answer
21 views
Retreving an image stored on SQl Server CE 3.1
Hello!
I'm developing a WinForm app for Windows Mobile 6.0 with C#, .NET Compact Framework 2.0 SP2 and SqlServer CE 3.1.
I have this code that is not working:
using (SqlCeDataRe …
1
vote
2answers
64 views
Is there a simple image processing library for Java similar to ImageMagick?
I am aware that Java includes very advanced image processing API's but what I'm looking for is a pure Java API (uses Java2D) that is "phrased" in terms more appropriate to common t …
0
votes
1answer
43 views
IE6 javascript image swapping
I am having a problem with IE6 image swapping using jQuery (but assumedly any old javascript will trigger this issue)
When setting $().attr('src','image.png') where the current im …
1
vote
4answers
86 views
Programmatically obtaining the number of colors used in an image
Question:
Given an image in PNG format, what is the simplest way to programmatically obtain the number of colors used in the image?
Constraints:
The solution will be integre …
