Any good opensource / free image APIs out htere

Ive used JAI, but do you guys know any APIs out there that handle media files like images and perhaps movies.
I am looking to use something that is perhaps better/easier to use in some ways then JAI

What kind of functionality are you looking for?
You can search the relevant forums.
http://forum.java.sun.com/forum.jspa?forumID=540
http://forum.java.sun.com/forum.jspa?forumID=28

Similar Messages

  • Any good sound free sound effects links?

    Hi,
    Ive stumbled upon a few sites that have free sound FX's but the ones I want which I wuld think are the easiest to get I cant find.
    I want a sound for when someone clicks the right thing, like a under a sec tiriring or something like when you kill a guy in Leauge of Legends or something like that and also one for when you click the wrong thing like an windows warning ut a little different, yet all the sites and SFX I come across are for everything but those.
    Anyone have any good links?

    http://www.google.co.in/#hl=en&source=hp&q=sfx+sounds+download&oq=sfx+sounds+download&aq=f &aqi=g1&aql=1&gs_sm=e&gs_upl=825l6181l0l6371l25l23l6l8l14l0l475l1852l2.4.1.1.1l9l0&bav=on. 2,or.r_gc.r_pw.&fp=2839f54c7e4f6857&biw=1024&bih=605

  • Any good opensource java

    Hello,
    I'm looking for a good, free LDAP implementation. Any reccomendations?
    I've been using openLDAP but we need a 100% java implementation now. Need a pretty solid one too, not keen on any beta versions.
    Ted.

    What kind of functionality are you looking for?
    You can search the relevant forums.
    http://forum.java.sun.com/forum.jspa?forumID=540
    http://forum.java.sun.com/forum.jspa?forumID=28

  • Any good people can help me out

    i am having a page with a link at the bottom i need to display a overlay on click of the link at the center of the page, i had done that but there is one issue on this if i click the link at the bottom of the page then the overlay will be displayed at the top of the page because i am displaying that overlay based on the center of the whole page using client width
    how to dispaly the overlay at the center of the currently displaying view that i am getting on scrolling down. by using what property i can fix this issue.

    This is a Java forum, not a JavaScript forum. Actually, it might be DHTML or whatever, but it's certainly not Java.

  • Any good iPhone wireless test tools out there?

    I have a new iPhone am i am looking to see if anyone is using it for basic low level testing? If so, what software might you be using.

    I use the following apps on my iphone to check the wifi:
    wififofum < excellent tool
    speedtest.net speedtest
    cisco global internet speedtest
    speedtest pro
    touchterm ssh.
    subnetcalc
    all available through the ip store

  • Do you know any good uml tools ??

    hello
    I'm not sure if this is the best place to post this thread . I suppose that alot of you would use uml tools
    do you knwo any good opensource UML tools ???
    I used Win'design ,and would like to move to legal opensource program .
    the tools i need must create the class diagram ,then generate the java classes and the database script
    thank you

    you may get open source UML tools..search in the
    google........otherwiseI did ,but I did not find a complete life cycle development tools
    u can download the trial version of Enterprise
    Architect, thats a very good toolI'm searching for open source tools
    thank you any way

  • Are there any good code examples for displaying preview images in the storefront?

    I can gather other info using folio.xxx, but can not find any good examples to use for preview images.  Tried folio.getPreviewImage() with no success.  Oh, I should mention it is version 2.  Plenty of examples for version 1.
    Perhaps if I get a little more specific.
    I am calling up the folios via:
           adobeDPS.libraryService.folioMap.addedSignal.add(function(folios) {
                for (var i = 0; i < folios.length; i++) {
                    addFolio(folios[i]);
            }, this);
    This eventually works into a function where I am gathering and displaying folio data:
         var productId = folio.productId;
        var html  = "<div id='" + productId + "'>";
            html +=     "<a href='#'><img class='shadow' width='120' src='' border=0 /></a>";
            html +=     "<br /><span class='bold'>" + folio.title + "</span>";
            html += "</div>";
        this.$el = $(html);
    folio.title works fine to pull up the title, but I can no longer use folio.getPreviewURL in v2.  What code should I be using to set the src to the preview image?
    Thanks

    Have you looked at the default implementations of the library?
    In FolioItemView's render function, there is a function(follow the nested functions!):
    setTimeout(function(){ scope.loadPreviewImage() }, 100);
    It references this function (this doesn't copy well):
    loadPreviewImage: function() {
    if (this.el.parentElement) {
    var transaction = this.folio.getPreviewImage(135, 180, true);
    transaction.completedSignal.addOnce(this.getPreviewImageHandler, this);
    Going deeper, into the getPreviewImageHandler function is where you see the url value..
    if (transaction.state == adobeDPS.transactionManager.transactionStates.FINISHED && transaction.previewImageURL != null) {
                                  this.$el.find(".folio-thumb").attr("src", transaction.previewImageURL);
    Within the example is also code for supplying a preview when the Adobe API is not available:
    (Within the render function)
    var json = this.model.toJSON();
    $folioThumb.attr("src", json.libraryPreviewUrl);
    If you're making any changes to where the preview is displayed, you can just swap out the class ".folio-thumb" to whatever the class (or id) is of the element you're wanting to render the preview in.

  • Any good documentation of the Applet Persistence API ?

    Does anybody have links to good documentation for the Applet Persistence API? I am talking about the new getStream and setStream methods on the AppletContext class. The official documentation I have been able to find simply sucks:
    http://java.sun.com/j2se/1.4/docs/guide/plugin/developer_guide/persistence.html
    A search on this forum and on Google didn't reveal much either. It seems like an almost undocumented feature.
    If you have any links or if you have some hands-on experience with the Applet Persistence API, then please share it. :)

    I'm resurrecting this old thread because I think its pretty funny that in five years this seems to have only gotten more confusing. I don't think anyone is using it (ie. google was still no help) but I'm hoping someone can shed some light.
    I got the distinct impression from... something I thought I read but must have hallucinated... that this API is supposed to persist information across browser runs. Even if that's not the case, I'm curious why I can't get the stated functionality to work. I tried the only sample I could find from this page:
    http://www.java-tips.org/java-se-tips/java.applet/working-with-applet-context-streams.html
    The sample is quite good even if it leaves out the most important information about the API, which the previous poster provided (that its not 'real' persistence). Unfortunately, it doesn't seem to work with the latest release JRE. Through the debugger I'm seeing that the setStream call is happening as expected but the getStreamKeys routine always returns null. Can someone who has successfully used this enlighten me?
    Thanks,
    - David

  • Any good Leopard-compatible greeting card programs out there?

    My wife wants to print the cards herself vs. going through the Apple Print Service. Does anyone know of any good greeting card software out there that works with Leopard? Thanks

    Go to > Windows Media Player on the Mac - Flip4Mac, the free version should do it.

  • Mac OS X's built-in fax - any good to monitor fax status or re-fax out?

    Hi Folks,
    Just testing out my new Intel Mac Mini's faxing capabilities. It seems that the faxing status details when I view the fax monitor isn't quite as accurate as I need. For example, after I mistakenly tried to send a fax out via my printer/fax machine, I cancelled it before it finished dialing, but still the status of it showed that it was "Finished".
    Because I absolutely need to know whether my faxes got sent properly or not, should I continue to use the very convienient built-in fax software, or opt for another fax program?
    Does the built-in fax software also attempt to re-dial the same number to re-fax out if the first try failed? And can you also configure it to attempt X number of times before quitting?
    BTW, are there any good free Mac faxing programs available? Thanks.
    Intel Mac Mini   Mac OS X (10.4.5)  

    There are two excellent shareware faxing programs available: Pagesender and FaxCenter. Of the two I prefer and use Pagesender, and it's a universal binary. FaxCenter is cheaper, but hasn't been updated for a while.

  • New macbook owner - any good free burning software?

    Hello,
    I'm wondering if there are any good freeware options for burning software - a package to duplicate dvds/cds (audio and data) and burn files to a disc.
    Thanks in advanced
    MacBook 2.0 Ghz 2 GB RAM   Mac OS X (10.4.7)  

    i use Toast (but you have to pay)
    a REALLY good freeware application is liquid CD
    it lets you burn disk images, copy disks, burn music, data etc.
    Its a really great software, and what makes it even better, IT'S FREE!
    http://www.maconnect.ch/index.php?lang=en&page=liquidcd

  • Is there any free image that i can use in my flyer

    Hi all,
    i want to ask a question, if i want to use image on apple product such as Macbook pro, iPad image in my flyer, is there any free image that i can use?
    please advice..
    Thanks in Advance

    I doubt anyone here will have a definitive answer as no one here is an Apple Employee, and you are asking a legal question
    In general terms, a designer needing artwork/images from a company will contact that company's public relations section and ask for the images and permissions to reprint them. This usually requires an attribution line under the image, such as, "Photo © Apple Inc. Used with permission."
    Apple Public Relations:
    http://www.apple.com/pr/
    Apple Legal :Trademarks and Copyrights:
    http://www.apple.com/legal/intellectual-property/

  • Does anyone know what programme i can use as iDVD is not on my mac.  I want to make a DVD from a movie created on iMovie? Is Burn any good? and if so, can I get it free?

    Hi does anyone know what programme I can use to create DVD of a movie that I have created on iMovie?  There is no iDVD on my mac.  Is Burn any good? And if so, can I get it for free?
    Thanks.

    There is no iDVD on my mac.
    There is NO alternative.   But iDVD is very easy to get.
    iDVD is on the iLife 11 DISK.  Buy here:
    http://www.amazon.com/Apple-MC623Z-A-iLife-VERSION/dp/B003XKRZES/ref=sr_1_1?ie=U
    Is Burn any good?
    iDVD is vastly superior, especially for movies.

  • I have an iMac 27" which is 4  years old and probably overdue for a clean-up. Is there any good reliable software out there that would help? Has anyone had any experience of 'Mackeeper'?

    I have an iMac 27" which is 4  years old and probably overdue for a clean-up. Is there any good reliable software out there that would help?
    Has anyone had any experience of 'Mackeeper'?

    Check how many applications are starting when you log in, I found that if there was a lot of activity at login Finder did not display the icons on the desktop correctly, again like you it did not occur at every login, just occasionally.
    For Safari have you tried resetting Safari, if that does not help you could disable plugins and extensions one at a time. You may find one of those is causing the problem.

  • Any good way to find out which process is running on which CPU, how long it

    Hi All
    any good way to find out which process is running on which CPU, how long it took, how many threads it has forked, which thread went to which CPU, etc. .
    RPS
    Message was edited by:
    RajeshPS

    Hi All
    any good way to find out which process is running on
    which CPU, how long it took, how many threads it has
    forked, which thread went to which CPU, etc. .Because the scheduler moves threads from CPU to CPU all the time, that would be a lot of information to store. I don't know any easy way to gather it.
    Under Solaris 10, you could write a dtrace script that noted every time one of the processes thread was enqueued or dequeued on a cpu and post-process that.
    That's probably the best way.
    Darren

Maybe you are looking for