The krpano Viewer is a small and very flexible high-performance viewer for all kind of panoramic images and interactive virtual tours. The viewer is available as Flash and HTML5 application. The viewer is designed for the usage inside the Browser on Desktop (Windows, Mac, Linux) and on Mobiles/Tablets (iPhone, iPad, Android, ...).

In addition to the krpano Viewer there are the krpano Tools - this are small tools and droplets which are helping to automatically prepare the panoramic images for viewing and making them ready-to-use. Making a pano or a tour is possible just by drag-and-drop.
Convince yourself by viewing the examples and / or by downloading the krpano Viewer and krpano Tools for free and try using them with your own panoramic images.
See also for the Tutorials.

Features

  • Flash and HTML5

    The krpano Panorama Viewer is available as Flash and HTML5 viewer. Both viewers have and use the same interfaces for controlling the panos and the layout.

  • High-performance and high-quality rendering

    The rendering-performance and the image-quality were and are one of the two most important features in the krpano development. Additionally there are also strong development demands to keep the viewer itself as small and efficient as possible.

  • Highly-customizable

    Almost everything is customizable in the krpano viewer. There are settings for everything and adding custom settings or behaviors is possible too. krpano has a flexible and dynamic xml scripting system which allows realizing own ideas and features.
    To build user interfaces just include and arrange your images on the viewer screen.
    And for even more and deeper customizing or extending the viewer itself it is possible to include external Flash or Javascript (HTML5) plugins. See here for the all available krpanoPlugins.

  • Wide-range of supported panoramic formats and image file-formats

    Supported panoramic formats by the krpano Flash Panorama Viewer:

    • Cube and Cubestrip Images
    • Spherical Panos (360x180)
    • Cylindrical Panos
    • Partial Spherical, Partial Cylindrical Panos
    • Flat Images
    • Cubical QTVR files (.mov)
    • Zoomify Images
    • Object Movies (=Multi-Frame-Flat-Images)
    • Panoramic Videos (Spherical, Cylindrical, Partials)

    Supported input and output image file-formats for the krpano Tools:

    • JPEG (*.jpg, *.jpeg)
    • TIFF / BigTIFF (*.tif, *.tiff, *.btf, *.tf8, *.bigtiff)
    • Photoshop Document and Photoshop Big Document (*.psd, *.psb)
    • Kolor Raw (*.kro)
  • Multi-Resolution

    Loading very large images, e.g. at Gigapixel size, at once is not possible today - the loading would take ages and the memory need that would be need to display the image would be much to much for a web application. To solve this problem krpano supports a tiled Multi-Resolution loading - the large images will be resampled to several resolution levels and each level will be split up into many small tiles. And these small tiles will be loaded piece by piece and only when needed. This makes is possible to view also very large images quick and fast and with a few memory need.
    Multi-Resolution images can be generated automatically by using the krpano Tools.

    More information...

  • 3D Projections

    The krpano Flash viewer supports several ways for projecting the pano image on the screen:

    • The normal or also called Rectilinear Projection.
    • Fisheye Projection.
    • Stereographic Fisheye Projection (when looking down also called 'Little Planet View').
    • Pannini Projection (Cylindrical Fisheye / Stereographic).
    • Architectural Projection.

    Every of these projection modes can be adjusted by several parameters in fine steps. Mixing and / or fading between the different projection modes is also possible.
    For example - a pano can start in with a 'Little Planet View' (a Stereographic Fisheye Projection) and then transit smoothly to the normal projection.

    More information...

  • Virtual Tours / Hotspots / Scripting

    By linking several panos together, e.g. by Hotspots, Maps, Thumbnails, Select Boxes or any other custom actions, it is possible to build full featured virtual tours.
    The krpano Tools include MAKE VTOUR droplets for an easy and automatic generation of virtual tours. Just drop all pano images on it and done.

  • Simple and complex usage at the same time

    Use the included MAKE PANO / MAKE VTOUR droplets from the krpano Tools for an easy and fully automatic generation of ready-to-use panos or virtual tours. And for more individual and complex customizing use krpano xml format and / or the Flash or Javascript interfaces.

Krapo 2的更多相关文章

随机推荐

  1. 深入JAVA注解之属性注解

    项目目录结构 实体类: package org.guangsoft.annotation.entity; import java.lang.annotation.ElementType; import ...

  2. python Django编写登录项目

    Django 目录结构: __init__.py 文件: import pymysql pymysql.install_as_MySQLdb() 注意:如果 import pymysql 的时候报红, ...

  3. HTML5 多媒体音视频处理

    HTML5 多媒体音视频处理 版权声明:未经博主授权,内容严禁转载 ! 音频处理 - audio HTML5 Audio 音频 目前大多数音频是通过哦插件的形式来播放的. 不同浏览器在网页上播放音频的 ...

  4. 02: SocketServer服务

    网络编程其他篇 目录: 1.1 SocketServer四种基本流及 异步处理理论部分 1.2 创建socketserver实现: 多客户端并发 1.3 SocketServer实现多并发FTP 部分 ...

  5. 20145304 Exp7 网络欺诈技术防范

    20145304 Exp7 网络欺诈技术防范 实验后回答问题 1.通常在什么场景下容易受到DNS spoof攻击 在公共网络下,如一些购物场所.咖啡馆.快餐店等提供的网络下:当自己常使用的无线网被有恶 ...

  6. C# 取form表单的数据

    //key代表form表单中html元素的name属性值 public static string StringForm(string key) { string result = null; res ...

  7. git如何列出分支之间的差异commit

    答:使用git log master..diff_master 这样就可以列出在diff_master分支中包含的commit而在master分支中不包含的commit

  8. ubuntu16.04下无线网卡无法正常连网

    背景:无线网卡初次连接可以正常上网,但是用了一会儿就会出现无法上网的情况 版本: Ubuntu 16.04 一.分析: 1.使用ifconfig命令发现不会显示无线网卡,说明无线网卡被关闭,笔者输出的 ...

  9. 矩阵二分快速幂优化dp动态规划

    矩阵快速幂代码: int n; // 所有矩阵都是 n * n 的矩阵 struct matrix { int a[100][100]; }; matrix matrix_mul(matrix A, ...

  10. decimal and double ToString problem

    decimal d2 = 0.0000002500m; Console.WriteLine(d2.ToString()); double d3 = 0.0000002500; Console.Writ ...