Skip to content
Paweł Jastrzębski edited this page Mar 6, 2019 · 12 revisions

KCC read XML file called ComicInfo.xml in the root of the CBZ/CBR/CB7 archive.

Currently following ComicRack metadata fields are used:

  • Series field is used as a book title.
  • Volume number and chapter Number is added to the book title.
  • Names declared in fields: Writer, Penciller, Inker and Colorist will be used as book authors.
  • Bookmarks will be used to create TOC if input archive have a flat directory structure.
  • Summary field will be used as book description.

KCC have build-in simple metadata editor.

If ComicRack is used make sure that metadata is saved inside comic package! Right click comic in the library and choose Update Book Files option to do that.

ComicTagger can also be used to write metadata inside CBZ/CBR file. Just make sure you write them in ComicRack format.


Sample ComicInfo.xml file:

<?xml version="1.0" encoding="utf-8"?>
<ComicInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <Series>Dragon Ball</Series>
   <Volume>1</Volume>
   <Writer>Akira Toriyama</Writer>
   <Pages>
      <Page Image="0" Bookmark="Cover"/>
      <Page Image="4" Bookmark="Table of Contents"/>
      <Page Image="6" Bookmark="Tale 1: Bloomers and the Monkey king"/>
      <Page Image="36" Bookmark="Tale 2: No Balls!"/>
      <Page Image="50" Bookmark="Tale 3: Sea Monkeys"/>
      <Page Image="64" Bookmark="Tale 4: They Call Him... the Turtle Hermit!"/>
      <Page Image="78" Bookmark="Tale 5: Oo! Oo! Oolong!"/>
      <Page Image="92" Bookmark="Tale 6: So Long, Oolong!"/>
      <Page Image="106" Bookmark="Tale 7: Yamcha and Pu'ar"/>
      <Page Image="120" Bookmark="Tale 8: One, Two, Yamcha-cha!"/>
      <Page Image="134" Bookmark="Tale 9: Dragon Balls in Danger"/>
      <Page Image="148" Bookmark="Tale 10: Onward to Fry-Pan"/>
      <Page Image="162" Bookmark="Tale 11: ...And into the Fire!"/>
      <Page Image="176" Bookmark="Title Page Gallery"/>
   </Pages>
</ComicInfo>
Clone this wiki locally