1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
|
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style>
/* container style for ViewImage render */
.thumbcontainer {
margin: 2px;
width: 128px;
height: 128px;
float: left;
}
/* container style for direct browser render */
.browserthumb {
margin: 2px;
width: 128px;
height: 128px;
overflow: hidden;
}
td {
max-width: 210px;
}
</style>
<title>ViewImage rendering tests</title>
</head>
<body>
<h2>
Test page to check ViewImage PNG rendering with different image
formats of <a
href="http://www.iana.org/assignments/media-types/media-types.xhtml#image"
title="IANA Media Types">IANA Registered Media Types</a>, plus BMP
format.
</h2>
<h3>Prerequisites</h3>
<ul>
<li>copy /yacy/test/viewImageTest/test folder in
/yacy/htroot/env/grafics</li>
<li>run a YaCy instance on localhost and 8090 port</li>
</ul>
<table>
<thead>
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th colspan="2">Render method</th>
</tr>
<tr>
<th>Image format</th>
<th>Mime type</th>
<th>File name extensions</th>
<th>Long name/Description</th>
<th>Specifications</th>
<th>Test suite(s)</th>
<th>YaCy ViewImage</th>
<th>Direct browser</th>
</tr>
</thead>
<tbody>
<tr>
<td>PNG : <a
href="https://upload.wikimedia.org/wikipedia/commons/4/47/PNG_transparency_demonstration_1.png"
title="sample source url">sample source</a></td>
<td>image/png</td>
<td>.png</td>
<td>Portable Network Graphics</td>
<td><a href="https://tools.ietf.org/html/rfc2083">RFC 2083</a></td>
<td><a href="http://www.schaik.com/pngsuite/pngsuite.html">Pngsuite</a>,
<a href="https://code.google.com/p/imagetestsuite/">imagetestsuite</a></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/PNG_transparency_demonstration_1.png"
title="ViewImage render PNG sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/PNG_transparency_demonstration_1.png"
width="128" height="128" alt="ViewImage PNG render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a
href="http://localhost:8090/env/grafics/test/PNG_transparency_demonstration_1.png"
title="Browser render PNG sample in full size"> <img
src="http://localhost:8090/env/grafics/test/PNG_transparency_demonstration_1.png"
height="100%" style="margin-left: -17%"
alt="Browser PNG render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>Animated PNG : <a
href="https://en.wikipedia.org/wiki/APNG#/media/File:Animated_PNG_example_bouncing_beach_ball.png"
title="sample source url">sample source</a></td>
<td>image/png</td>
<td>.png, .apng</td>
<td>Animated Portable Network Graphics</td>
<td><a href="https://wiki.mozilla.org/APNG_Specification">APNG
Specification</a></td>
<td><a href="https://philip.html5.org/tests/apng/tests.html">APNG
tests</a></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/Animated_PNG_example_bouncing_beach_ball.png"
title="ViewImage render PNG sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/Animated_PNG_example_bouncing_beach_ball.png"
width="128" height="128" alt="ViewImage PNG render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a
href="http://localhost:8090/env/grafics/test/Animated_PNG_example_bouncing_beach_ball.png"
title="Browser render PNG sample in full size"> <img
src="http://localhost:8090/env/grafics/test/Animated_PNG_example_bouncing_beach_ball.png"
height="100%" style="margin-left: -17%"
alt="Browser PNG render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>JPEG : <a
href="https://upload.wikimedia.org/wikipedia/commons/b/b4/JPEG_example_JPG_RIP_100.jpg"
title="sample source url">sample source</a></td>
<td>image/jpeg</td>
<td>.jpg, .jpeg, .jpe, .jif, .jfif, .jfi</td>
<td>Joint Photographic Experts Group</td>
<td></td>
<td><a href="https://code.google.com/p/imagetestsuite/">imagetestsuite</a></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/JPEG_example_JPG_RIP_100.jpg"
title="Render JPEG sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/JPEG_example_JPG_RIP_100.jpg"
width="128" height="128" alt="JPG render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a
href="http://localhost:8090/env/grafics/test/JPEG_example_JPG_RIP_100.jpg"
title="Render JPEG sample in full size"> <img
src="http://localhost:8090/env/grafics/test/JPEG_example_JPG_RIP_100.jpg"
height="100%" style="margin-left: -20%" alt="JPG render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>GIF : <a
href="https://upload.wikimedia.org/wikipedia/commons/a/a0/Sunflower_as_gif_websafe.gif"
title="sample source url">sample source</a></td>
<td>image/gif</td>
<td>.gif</td>
<td>Graphics Interchange Format</td>
<td></td>
<td><a href="https://code.google.com/p/imagetestsuite/">imagetestsuite</a></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/Sunflower_as_gif_websafe.gif"
title="Render GIF sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/Sunflower_as_gif_websafe.gif"
width="128" height="128" alt="GIF render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a
href="http://localhost:8090/env/grafics/test/Sunflower_as_gif_websafe.gif"
title="Render GIF sample in full size"> <img
src="http://localhost:8090/env/grafics/test/Sunflower_as_gif_websafe.gif"
width="100%" style="margin-top: -8%" alt="GIF render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>Animated GIF : <a
href="https://upload.wikimedia.org/wikipedia/commons/2/2c/Rotating_earth_%28large%29.gif"
title="sample source url">sample source</a></td>
<td>image/gif</td>
<td>.gif</td>
<td>Graphics Interchange Format</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/Rotating_earth_%28large%29.gif"
title="Render animated GIF sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/Rotating_earth_%28large%29.gif"
width="128" height="128" alt="Animated GIF render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a
href="http://localhost:8090/env/grafics/test/Rotating_earth_%28large%29.gif"
title="Render animated GIF sample in full size"> <img
src="http://localhost:8090/env/grafics/test/Rotating_earth_%28large%29.gif"
width="128" height="128" alt="Animated GIF render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>SVG : <a
href="https://upload.wikimedia.org/wikipedia/commons/0/02/SVG_logo.svg"
title="sample source url">sample source</a></td>
<td>image/svg+xml</td>
<td>.svg, .svgz</td>
<td>Scalable Vector Graphics</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/SVG_Logo.svg"
title="Render SVG sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/SVG_Logo.svg"
width="128" height="128" alt="SVG render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a href="http://localhost:8090/env/grafics/test/SVG_Logo.svg"
title="Render SVG sample in full size"> <img
src="http://localhost:8090/env/grafics/test/SVG_Logo.svg"
width="128" height="128" alt="SVG render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>ICO : <a href="https://en.wikipedia.org/favicon.ico"
title="sample source url">sample source</a></td>
<td>image/vnd.microsoft.icon, image/x-icon (not registered at
IANA)</td>
<td>.ico</td>
<td>Graphics file format for computer icons</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/favicon.ico"
title="Render ICO sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/favicon.ico"
width="128" height="128" alt="ICO render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a href="http://localhost:8090/env/grafics/test/favicon.ico"
title="Render ICO sample in full size"> <img
src="http://localhost:8090/env/grafics/test/favicon.ico"
width="128" height="128" alt="ICO render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>BMP : <a
href="http://homepages.cae.wisc.edu/~ece533/images/sails.bmp"
title="sample source url">sample source</a></td>
<td>image/bmp (not registered at IANA), image/x-bmp (not
registered at IANA)</td>
<td>.bmp, .dib</td>
<td>Windows Bitmap</td>
<td></td>
<td><a href="http://entropymine.com/jason/bmpsuite/">bmpsuite</a>,
<a href="http://bmptestsuite.sourceforge.net/">The Bitmap Test
suite</a></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/sails.bmp"
title="Render BMP sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/sails.bmp"
width="128" height="128" alt="BMP render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a href="http://localhost:8090/env/grafics/test/sails.bmp"
title="Render BMP sample in full size"> <img
src="http://localhost:8090/env/grafics/test/sails.bmp"
height="100%" style="margin-left: -16%" alt="BMP render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>CGM : <a
href="http://www.agocg.ac.uk/train/cgm/ralcgm/sample.cgm"
title="sample source url">sample source</a></td>
<td>image/cgm</td>
<td>.cgm</td>
<td>Computer Graphics Metafile</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/sample.cgm"
title="Render CGM sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/sample.cgm"
width="128" height="128" alt="CGM render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a href="http://localhost:8090/env/grafics/test/sample.cgm"
title="Render CGM sample in full size"> <img
src="http://localhost:8090/env/grafics/test/sample.cgm"
width="128" height="128" alt="CGM render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>TIFF : <a
href="http://www.uswebsitecreations.com/images/digital_images/marbles.tif"
title="sample source url">sample source</a></td>
<td>image/tiff, image/tiff-fx</td>
<td>.tiff, .tif</td>
<td>Tagged Image File Format</td>
<td><a
href="http://partners.adobe.com/public/developer/tiff/index.html">TIFF
6.0 Specification</a></td>
<td><a href="http://www.remotesensing.org/libtiff/images.html">libtiff</a>,
<a
href="https://github.com/haraldk/TwelveMonkeys/tree/master/imageio/imageio-tiff/src/test/resources/tiff">TwelveMonkeys</a>,
<a href="https://code.google.com/p/imagetestsuite/">imagetestsuite</a></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/marbles.tif"
title="Render TIFF sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/marbles.tif"
width="128" height="128" alt="TIFF render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a href="http://localhost:8090/env/grafics/test/marbles.tif"
title="Render TIFF sample in full size"> <img
src="http://localhost:8090/env/grafics/test/marbles.tif"
height="100%" style="margin-left: -13%" alt="TIFF render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>FITS : <a
href="http://fits.gsfc.nasa.gov/samples/WFPC2u5780205r_c0fx.fits"
title="sample source url">sample source</a></td>
<td>image/fits, application/fits</td>
<td>.fits, .fit, .fts</td>
<td>Flexible Image Transport System</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=WFPC2u5780205r_c0fx.fits"
title="Render FITS sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=WFPC2u5780205r_c0fx.fits"
width="128" height="128" alt="FITS render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a
href="http://localhost:8090/env/grafics/test/WFPC2u5780205r_c0fx.fits"
title="Render FITS sample in full size"> <img
src="http://localhost:8090/env/grafics/test/WFPC2u5780205r_c0fx.fits"
width="128" height="128" alt="FITS render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>JPEG 2000 : <a
href="http://www.fnordware.com/j2k/relax.jp2"
title="sample source url">sample source</a></td>
<td>image/jp2, image/jpx, image/jpm, video/mj2</td>
<td>.jp2, .j2k, .jpf, .jpx, .jpm, .mj2</td>
<td>JPEG 2000</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/relax.jp2"
title="Render JPEG 2000 sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/relax.jp2"
width="128" height="128" alt="JPEG 2000 render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a href="http://localhost:8090/env/grafics/test/relax.jp2"
title="Render JPEG 2000 sample in full size"> <img
src="http://localhost:8090/env/grafics/test/relax.jp2"
width="128" height="128" alt="JPEG 2000 render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>KTX</td>
<td>image/ktx</td>
<td>.ktx</td>
<td>KTX (format for storing textures for OpenGL and OpenGL ES
applications)</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>NAPLPDS</td>
<td>image/naplps</td>
<td>not known</td>
<td>North American Presentation Layer Protocol Syntax</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>BTIF</td>
<td>image/prs.btif</td>
<td>.btif, .btf</td>
<td>Bank check images and ASCII text data, used by Nations Bank</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>PTI</td>
<td>image/prs.pti</td>
<td>.pti</td>
<td>PTI</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>PWG Raster</td>
<td>image/pwg-raster</td>
<td>none</td>
<td>Used for printing "raw" image data in formats acceptable to
printers</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>T38</td>
<td>image/t38</td>
<td>none</td>
<td>Only used for T.38 media stream in SDP</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>PSD</td>
<td>image/vnd.adobe.photoshop</td>
<td>.psd</td>
<td>Adobe Photoshop file</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>AZV</td>
<td>image/vnd.airzip.accelerator.azv</td>
<td>.azv</td>
<td>AirZip file</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td></td>
<td>image/vnd.cns.inf2</td>
<td>none</td>
<td>TRILOGUE INfinity network services platform from Comverse
Network Systems, Ltd</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td></td>
<td>image/vnd.dece.graphic</td>
<td>.uvi, .uvvi, .uvg, .uvvg</td>
<td>Digital Entertainment Content Ecosystem</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>DjVu : <a
href="https://upload.wikimedia.org/wikipedia/commons/9/9b/Specimens_of_calligraphy_and_natural_history_illustration.djvu"
title="sample source url">sample source</a></td>
<td>image/vnd-djvu</td>
<td>.djvu, .djv</td>
<td>DjVu</td>
<td><a href="http://www.djvuzone.org/djvu/sci/djvuspec">DjVu
Image Compression Format</a></td>
<td></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/Specimens_of_calligraphy_and_natural_history_illustration.djvu"
title="Render DjVu sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/Specimens_of_calligraphy_and_natural_history_illustration.djvu"
width="128" height="128" alt="DjVu render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a
href="http://localhost:8090/env/grafics/test/Specimens_of_calligraphy_and_natural_history_illustration.djvu"
title="Render DjVu sample in full size"> <img
src="http://localhost:8090/env/grafics/test/Specimens_of_calligraphy_and_natural_history_illustration.djvu"
width="128" height="128" alt="DjVu render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>DWG : <a href="http://libdwg.sourceforge.net/en/index.html"
title="sample source url">sample source</a></td>
<td>image/vnd.dwg</td>
<td>.dwg</td>
<td>DWG CAD drawings</td>
<td><a
href="http://opendesign.com/files/guestdownloads/OpenDesign_Specification_for_.dwg_files.pdf">ODA
Open Design Specification for .dwg files</a></td>
<td></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/ACAD_r2000_sample.dwg"
title="Render DWG sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/ACAD_r2000_sample.dwg"
width="128" height="128" alt="DWG render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a
href="http://localhost:8090/env/grafics/test/ACAD_r2000_sample.dwg"
title="Render DWG sample in full size"> <img
src="http://localhost:8090/env/grafics/test/ACAD_r2000_sample.dwg"
width="128" height="128" alt="DWG render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>DXF</td>
<td>image/vnd.dxf</td>
<td>.dxf</td>
<td>AutoCAD DXF (Drawing Interchange Format, or Drawing
Exchange Format)</td>
<td><a
href="http://images.autodesk.com/adsk/files/autocad_2012_pdf_dxf-reference_enu.pdf">DXF
Reference</a></td>
<td></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/ACAD_r2000_sample_original.dxf"
title="Render DXF sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/ACAD_r2000_sample_original.dxf"
width="128" height="128" alt="DXF render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a
href="http://localhost:8090/env/grafics/test/ACAD_r2000_sample_original.dxf"
title="Render DXF sample in full size"> <img
src="http://localhost:8090/env/grafics/test/ACAD_r2000_sample_original.dxf"
width="128" height="128" alt="DXF render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>SUB</td>
<td>image/vnd.dvb.subtitle</td>
<td>.sub</td>
<td>Digital Video Broadcasting Subtitles</td>
<td></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>FBS</td>
<td>image/vnd.fastbidsheet</td>
<td>.fbs</td>
<td>FastBid Sheet</td>
<td>Raster or vector images which represents engineering or
architectual drawings.</td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>FPX</td>
<td>image/vnd.fpx</td>
<td>.fpx</td>
<td>FlashPix multi resolution bitmap image file</td>
<td>Extended from IVUE file format by Kodak. Specs are supposed
to be provided by <a href="http://www.kodak.com">kodak</a>
</td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>FST</td>
<td>image/vnd.fst</td>
<td>.fst</td>
<td></td>
<td>No specification : used by Java applet viewer from FAST
Search and Transfer ASA</td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>FST</td>
<td>image/vnd.fujixerox.edmics-mmr</td>
<td>.mmr</td>
<td></td>
<td>For Fuji Xerox 'EDMICS 2000' and 'DocuFile' applications
(G4 or Modified Modified READ compression used in fax?)</td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>RLC</td>
<td>image/vnd.fujixerox.edmics-rlc</td>
<td>.rlc</td>
<td></td>
<td>For Fuji Xerox 'EDMICS 2000' and 'DocuFile' applications</td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>PGB</td>
<td>image/vnd.globalgraphics.pgb</td>
<td>.pgb</td>
<td></td>
<td>Limited use by tools using file reading technology licensed
from Global Graphics such as Global Graphics Harlequin RIP</td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>MIX</td>
<td>image/vnd.mix</td>
<td>.mix</td>
<td>Microsoft Digital Image Document</td>
<td>No specification : used by Microsoft PhotoDraw 2000 and
Microsoft Picture-It discontinued applications</td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>MODI</td>
<td>image/vnd.ms-modi</td>
<td>.mdi</td>
<td>Microsoft Office Document Imaging</td>
<td>Used by Microsoft Office Document Imaging application</td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>Radiance</td>
<td>image/vnd.radiance</td>
<td>.pic, .hdr, .rgbe, .xyze</td>
<td>Radiance file</td>
<td><a href="http://radsite.lbl.gov/radiance/refer">Reference</a></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>SPNG</td>
<td>image/vnd.sealed.png</td>
<td>.spng, .spn, .s1n</td>
<td>Sealed PNG</td>
<td>Some information at <a
href="http://docs.oracle.com/cd/E29542_01/doc.1111/e12278/idtoirmreference.htm#IDTUG240">Oracle
IRM Desktop</a>.
</td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>SGIF</td>
<td>image/vnd.sealedmedia.softseal.gif</td>
<td>.sgif, .sgi, .s1g</td>
<td>Sealed GIF</td>
<td>Some information at <a
href="http://docs.oracle.com/cd/E29542_01/doc.1111/e12278/idtoirmreference.htm#IDTUG240">Oracle
IRM Desktop</a>.
</td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>SJPEG</td>
<td>image/vnd.sealedmedia.softseal.jpeg</td>
<td>.sjpg, .sjp, .s1j</td>
<td>Sealed JPEG</td>
<td>Some information at <a
href="http://docs.oracle.com/cd/E29542_01/doc.1111/e12278/idtoirmreference.htm#IDTUG240">Oracle
IRM Desktop</a>.
</td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>SVF : <a href="http://www.svf.org/svflogo.svf"
title="sample source url">sample source</a></td>
<td>image/vnd-svf</td>
<td>.svf</td>
<td>Simple Vector Format</td>
<td><a href="http://www.svf.org/spec.html">Specification
for Simple Vector Format (SVF) v2.0</a></td>
<td></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/svflogo.svf"
title="ViewImage render SVF sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/svflogo.svf"
width="128" height="128" alt="ViewImage SVF render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a href="http://localhost:8090/env/grafics/test/svflogo.svf"
title="Browser render SVF sample in full size"> <img
src="http://localhost:8090/env/grafics/test/svflogo.svf"
height="100%" style="margin-left: -17%"
alt="Browser SVF render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>TAP</td>
<td>image/vnd.tencent.tap</td>
<td>.tap</td>
<td>Tencent TAP</td>
<td><a
href="http://tu.qq.com/spec/image.vnd.tencent.tap-spec-en.txt">A
file format that could represent a static image or multiple static
images or an animation.</a></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>VTF: <a
href="http://www.gaming-models.de/index.php/product/413"
title="sample source url">sample source</a></td>
<td>image/vnd.valve.source.texture</td>
<td>.vtf</td>
<td>Valve source texture</td>
<td><a href="https://developer.valvesoftware.com/wiki/VTF">Unofficial
specification</a></td>
<td></td>
<td>
<div class="thumbcontainer">
<a
href="http://localhost:8090/ViewImage.png?url=http://localhost:8090/env/grafics/test/stone_wall.vtf"
title="ViewImage render VTF sample in full size"> <img
src="http://localhost:8090/ViewImage.png?maxwidth=128&maxheight=128&quadratic&url=http://localhost:8090/env/grafics/test/stone_wall.vtf"
width="128" height="128" alt="ViewImage VTF render failed" />
</a>
</div>
</td>
<td>
<div class="browserthumb">
<a href="http://localhost:8090/env/grafics/test/stone_wall.vtf"
title="Browser render VTF sample in full size"> <img
src="http://localhost:8090/env/grafics/test/stone_wall.vtf"
height="100%" style="margin-left: -17%"
alt="Browser VTF render failed" />
</a>
</div>
</td>
</tr>
<tr>
<td>WBMP</td>
<td>image/vnd-wap-wbmp</td>
<td>.wbmp</td>
<td>Wireless Application Protocol Bitmap Format</td>
<td>Page 13 in <a
href="http://www.wapforum.org/what/technical/SPEC-WAESpec-19990524.pdf">WAP
WAE Specification</a></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>XIF</td>
<td>image/vnd.xiff</td>
<td>.xif</td>
<td>eXtended Image File Format</td>
<td>Should be provided by <a href="http://www.xerox.com">Xerox</a></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
<tr>
<td>PCX</td>
<td>image/vnd.zbrush.pcx</td>
<td>.pcx</td>
<td>ZSoft PCX File Format</td>
<td><a
href="http://web.archive.org/web/20100206055706/http://www.qzx.com/pc-gpe/pcx.txt">ZSoft
PCX File Format Technical Reference Manual</a></td>
<td></td>
<td>
<div class="thumbcontainer">No Sample</div>
</td>
<td>
<div class="browserthumb">No Sample</div>
</td>
</tr>
</tbody>
</table>
</body>
</html>
|