Hi, I am new to android, I have learned how to display drawable pic in gallery,
and display a url pic use ImageView. Now I dont know how to display online pictures in gallery. Should I use listview or not? In addtion, I want to know how to get pictures urls from flickrs with given userid
...
If you Save as > jpg in Adobe Photoshop a path (selection) is stored in the file.
Is it possible to read that path in python, for example to create a composition with PIL?
EDIT
Imagemagick seems to help, example
...
Hi,
I'm using the canvas feature of html5. I've got some images to draw on the canvas and I need to check that they have all loaded before I can use them.
I have declared them inside an array, I need a way of checking if they have all loaded at the same time but I am not sure how to do this.
Here is my code:
var color = new Array();
...
I am new to android, I just finished Hello gallery tutorial, and a web pciture tutorial.
Now I want to know how can I show some web images in gallery?
the hello gallery code is from andorid tutor
this is Web gallery code, I want to load some pictures from web and then show them in gallery, how can I write it?
public class WebGallery...
I'm actually needing to include html links in the longdesc attribute. I've altered prettyphoto to use longdesc instead of title for images, but I need to include html links in those descriptions. I know it's possible with code for characters, I just don't remember what those are.
Thanks
...
I have blended/merged 2 images img1 and img2 with this code which is woking fine.What i want to know is how to obtain the original two images img1 and img2.The code for blending is as under
img1=imread('C:\MATLAB7\Picture5.jpg');
img2=imread('C:\MATLAB7\Picture6.jpg');
for i=1:size(img1,1)
for j=1:size(img1,2)
for k=1:size(img1,3)...
hi Friends,
I was trying to make an app which also had the facility to let user select wallpaper he would like to set. I have managed this by calling the Gallery Intent. Once the user selects a specific image, the data path of the image is returned to me which then i preview to the user by setting the image onto an imageview.
The probl...
I just try to integrate ImageMagick into my PHP project. I installed and just execute the sample files that they provided with the imagick-3.0.0RC1 zip file. But it shows
Fatal error: Class 'Imagick' not found in C:\wamp\www\imagick-3.0.0RC1\imagick-3.0.0RC1\examples\watermark.php on line 9
this kind of an error how can I avoid that. ...
How to install image magic at windows 7. I followed these instruction
To install IMagick on windows xp (php 5.2.x)
1.) download and install ImageMagick-6.5.8-7 Q16-windows-dll.exe
http://www.imagemagick.org/download/binaries/ ImageMagick-6.5.8-7-Q16-windows-dll.exe
2.) download php_imagick_dyn-Q16.dll from:
http://valokuva.org/outside...
i have this code running to load my images all asynch and show a ajax loading image until the real image is downloaded.
$('img.loadable-image').css('background', 'transparent url(/images/ajax-loader1.gif) no-repeat center center')
$('img.loadable-image').load(function() { $(this).css('background', ''); });
this works in that it shows...
I need to open 16 bpp grayscale tiff image in C++ program. Trying to do this with GDI+ Image class, I get OutOfMemoryException (GDI+ doesn't support 16 bpp format). Standard Windows tools, like Paint and Picture Viewer, cannot open such image, possibly they use GDI or GDI+. ImageJ program opens such image successfully.
Is there some SDK ...
Hi! How can I save a NSImage as a new file (png, jpg, ...) in a certain directory?
Thank you for answering my "noobish" question.
...
I am trying to create a Windows Installer package using Wix. I'm getting a lot of conflicting information about what size my custom background should be--the Wix documentation suggests a size of 500 x 314 pixels, but this leads to slight image distortion in the installer.
I believe that I may be indirectly using the SplashBitmap propert...
I am looking in to learning a programming language (take a course) for use in image analysis and processing. Possibly Bioinformatics too. Which language should I go for? C or Java? Other languages are not an option for me. Also please explain why either of the languages is a better option for my application.
...
I have tried every way I can find but the background is always black. Is there any way to keep the transparency of the first image when GD ises it in PHP?
I'm using imagecopymerge to use the image. though i am not sure if this is the right way.
imagecopymerge($dest, $char, 0, 0, 0, 0, 150, 300, 100);
The image is like so: http://file...
I've written a simple top down parser using c#. It's a console application. I'd like the parser could save, at the end of the computation, an image file of the parse tree. I think I could use graphviz, but I'd like to know your opinion.
Thanks.
...
Our website was just converted to being generated by mod_rewrite and php scripts. Images aren't caching in browsers when they seemingly should be.
All images follow format:
<img src="/images/header.png" />
I must avoid the script completely caching because the PHP parser needs to handle each page dynamically on each request; however,...
Hi all
How can I place the picture on facebook wall via API??
Thank`s
...
I'm trying to write a small graphic application, and I need to
construct some image using PIL that I show in a widget.
The image is correctly constructed (I can check with im.show()),
I can convert it to a QImage, that I can save normally to disk
(using QImage.save), but if I try to draw it directly on my
QWidget, it only show a white sq...
I wrote a little utility class that saves BitmapSource objects to image files. The image files can be either bmp, jpeg, or png. Here is the code:
public class BitmapProcessor
{
public void SaveAsBmp(BitmapSource bitmapSource, string path)
{
Save(bitmapSource, path, new BmpBitmapEncoder());
}
public void SaveAsJp...