Ошибка xcf неподдерживаемая версия 11 xcf файла

Содержание

  • 1 Чем открыть файл в формате XCF
  • 2 Содержание
  • 3 Общее [ править | править код ]
  • 4 Проблемы [ править | править код ]
  • 5 Для чего нужен файловый формат .XCF?

Файл формата XCF открывается специальными программами. Чтобы открыть данный формат, скачайте одну из предложенных программ.

Файл изображения, создаваемый GNU Image Manipulation Program (GIMP) — бесплатно распространяемой программой редактирования изображений. Хранит уровни, каналы, маршруты, направляющие и текущий выбор при сохранении.

XCF расшифровывается как «eXperimental Computing Facility» — группа студентов, заинтересованных в развитии компьютерных технологий.

Чем открыть файл в формате XCF (GIMP Image File)

XCF (англ. eXperimental Computing Facility ) — растровый формат хранения графической информации, использующий сжатие без потерь, созданный специально для программы Gimp и поддерживающий все её возможности (аналогично формату PSD для Adobe Photoshop) [1] . Получил название в честь лаборатории в Калифорнийском университете в Беркли, где была написана первая версия Gimp [2] .

Содержание

Общее [ править | править код ]

Формат поддерживает сохранение каждого слоя и текущее выделение, каналы, прозрачность, текстовые слои, группы слоёв. Изображения, сохранённые в XCF, сжимаются простым алгоритмом RLE, но GIMP также поддерживает сжатые файлы, используя либо gzip, либо bzip2. Сжатые файлы могут быть открыты как обычные файлы изображений.

Совместными усилиями разработчиков GIMP, MyPaint и Krita ведётся работа над форматом OpenRaster, спроектированным по образцу формата OpenDocument, для обмена многослойными растровыми данными между этими и другими приложениями.

Проблемы [ править | править код ]

Формат XCF имеет неполную обратную совместимость, например GIMP 2.0 может сохранять текст в текстовых слоях, в то время как GIMP 1.2 не может. Текстовые слои, сохранённые в GIMP 2.0, будут открыты как обычные слои растровых изображений в GIMP 1.2. Использование XCF как формата обмена данными не рекомендуется разработчиками GIMP, так как формат отражает внутренние структуры данных Gimp, а в будущих версиях возможно появление изменений формата.

У вас есть проблема с открытием .XCF-файлов? Мы собираем информацию о файловых форматах и можем рассказать для чего нужны файлы XCF. Дополнительно мы рекомендуем программы, которые больше всего подходят для открытия или конвертирования таких файлов.

Файловое расширение .xcf является сокращением от «Experimental Computing Facility», XCF (Экспериментальное вычислительное средство) и обозначением формата и типа файлов «Изображение GIMP» (XCF). GIMP (GNU Image Manipulation Program – Программа для работы с изображениями GNU) представляет собой мощный, расширяемый и универсальный свободный/открытый кросс-платформенный редактор растровой графики, часто сравниваемый с коммерческим Adobe Photoshop.

Файл .xcf — это графический проект GIMP. XCF служит для GIMP родным форматом, и все изображения, которые открываются и редактируются в этом редакторе, сохраняются по умолчанию в виде файлов .xcf. XCF обеспечивает сохранение множественных слоев, прозрачности, выделений и масок, и др. В случае использования в проекте множества слоев файлы изображений XCF имеют тенденцию становиться довольно большими по размеру. Для уменьшения размера файлов проекты XCF можно сохранять с использованием сжатия данных Gzip (XCFGZ) или bzip2 (XCFBZ2).

В целях публикации и обмена изображениями использовать файлы .xcf в родном формате GIMP следует с осторожностью. Чтобы сохранить графический проект в другом формате для публикации (PNG, JPEG), изображение необходимо экспортировать вместо того, чтобы «Сохранить как. «. Кроме GIMP, XCF в разной степени поддерживают с десяток других графических приложений, от редакторов до просмотрщиков.

Gimp script, makes a .PNG for each .XCF in the directory passed as a parameter

#!/usr/bin/python

import os,glob,sys,time
from gimpfu import *

def process(infile):
        print "Processing file %s " % infile
        image = pdb.gimp_xcf_load(0,infile,infile)
        print "File %s loaded OK" % infile
        # The API saves a layer, so make a layer from the visible image
        savedlayer = pdb.gimp_layer_new_from_visible(image,image,"Saved image")
        outfile=os.path.splitext(infile)[0]+'.png'
        print "Saving to %s" % outfile
        pdb.file_png_save(image,savedlayer,outfile, outfile,True,9,True,True,True,True,True)
        print "Saved to %s" % outfile
        pdb.gimp_image_delete(image)


def run(directory):
        start=time.time()
        print "Running on directory "%s"" % directory
        for infile in glob.glob(os.path.join(directory, '*.xcf')):
                process(infile)
        end=time.time()
        print "Finished, total processing time: %.2f seconds" % (end-start)


if __name__ == "__main__":
        print "Running as __main__ with args: %s" % sys.argv
  • Save as convertXCF.py (this is Python, so mind the indentation)
  • Run as:
gimp -idf --batch-interpreter python-fu-eval -b "import sys;sys.path=['.']+sys.path;import convertXCF;convertXCF.run('/path/to/the/directory')" -b "pdb.gimp_quit(1)"
  • Windows .BAT syntax, for Bash (Linux,OSX) swap the simple and double quotes.
  • As written the script has to be in the current directory, this can be changed.

Some more explanations here.

File Not Supported between GIMP versions (Version 11)

I recently comissioned an artist to do a piece for me and she’s sent me the final product as an xcf so I can tinker if I want. However opening it gives me the error:

unsupported XCF file version 11 encountered

Did a bit of googling but I can’t get a straight answer because there are numbers flying everywhere. It seems there was a big change when GIMP updated to 2.1 and it made some incompatibilities. I have GIMP 2.8 on my PC. I’m not sure what version the product was made with but I could ask if it’s important.

TL:DR; How do I open this XCF file in GIMP 2.8? Do I need to downgrade my GIMP? Do they need to update and then send it to me? Do I need to convert this? Do they need to? I am a pretty amatuer user of the program so I have no clue as to how to proceed.

XCF. Сохраняем в GIMP 2.10, открываем в GIMP 2.8

bnksb Дата: Четверг, 13.02.2020, 15:43 | Сообщение # 1

Admin

Группа: Администраторы

Награды: 111

Репутация: 56

Статус: Оффлайн

В GIMP 2.10 изображения в XCF сохраняются в обновлённом формате xcf-1.1, который не читается в GIMP 2.8
Для того, чтобы GIMP 2.8 смог прочитать XCF, созданный в GIMP 2.10, xcf-1.1 следует преобразовать в устаревший формат xcf-1.0 не посредственно в самом GIMP 2.10. для этого следует провести следующие операции →

Доступно только для пользователей

Теперь попробуем открыть XCF созданный в GIMP 2.10 в GIMP 2.8, Вы не поверите, он открылся. →

 
  • Страница 1 из 1
  • 1


0

1

Здравствуйте.

Мой топик адресован в частности AP

после того как я установил себе git версии gimp/gegl/babl, гимп перестал правильно, т.е., сносно открывать psd файлы, примеры:

okular http://wstaw.org/m/2015/01/02/plasma-desktopD10657.png — ПРАВИЛЬНО

gimp-2.8.14 http://wstaw.org/m/2015/01/02/plasma-desktops10657.png

gimp-git http://wstaw.org/m/2015/01/02/plasma-desktopS10657.png

другая проблемма —

если открыть xcf сохраненный в gimp-git версией gimp-2.8.14, то http://wstaw.org/m/2015/01/02/plasma-desktopq10657.png

Невозможно открыть '/home/bm/01.xcf': Ошибка XCF: неподдерживаемая версия 8 XCF-файла

так же, с такого рода файлами не работает ни одна программа из установленных (okular, xcftools, krita)

Вот, собственно, делема: пользоваться умным и удобным или сохранять и открывать файлы

Gimp script, makes a .PNG for each .XCF in the directory passed as a parameter

#!/usr/bin/python

import os,glob,sys,time
from gimpfu import *

def process(infile):
        print "Processing file %s " % infile
        image = pdb.gimp_xcf_load(0,infile,infile)
        print "File %s loaded OK" % infile
        # The API saves a layer, so make a layer from the visible image
        savedlayer = pdb.gimp_layer_new_from_visible(image,image,"Saved image")
        outfile=os.path.splitext(infile)[0]+'.png'
        print "Saving to %s" % outfile
        pdb.file_png_save(image,savedlayer,outfile, outfile,True,9,True,True,True,True,True)
        print "Saved to %s" % outfile
        pdb.gimp_image_delete(image)


def run(directory):
        start=time.time()
        print "Running on directory \"%s\"" % directory
        for infile in glob.glob(os.path.join(directory, '*.xcf')):
                process(infile)
        end=time.time()
        print "Finished, total processing time: %.2f seconds" % (end-start)


if __name__ == "__main__":
        print "Running as __main__ with args: %s" % sys.argv
  • Save as convertXCF.py (this is Python, so mind the indentation)
  • Run as:
gimp -idf --batch-interpreter python-fu-eval -b "import sys;sys.path=['.']+sys.path;import convertXCF;convertXCF.run('/path/to/the/directory')" -b "pdb.gimp_quit(1)"
  • Windows .BAT syntax, for Bash (Linux,OSX) swap the simple and double quotes.
  • As written the script has to be in the current directory, this can be changed.

Some more explanations here.

XCF. Сохраняем в GIMP 2.10, открываем в GIMP 2.8

bnksb Дата: Четверг, 13.02.2020, 15:43 | Сообщение # 1

Admin

Группа: Администраторы

Награды: 111

Репутация: 56

Статус: Оффлайн

В GIMP 2.10 изображения в XCF сохраняются в обновлённом формате xcf-1.1, который не читается в GIMP 2.8
Для того, чтобы GIMP 2.8 смог прочитать XCF, созданный в GIMP 2.10, xcf-1.1 следует преобразовать в устаревший формат xcf-1.0 не посредственно в самом GIMP 2.10. для этого следует провести следующие операции →

Доступно только для пользователей

Теперь попробуем открыть XCF созданный в GIMP 2.10 в GIMP 2.8, Вы не поверите, он открылся. →

 
  • Страница 1 из 1
  • 1

GIMP is smart enough and alerts you when you save the file.

GIMP alerts that the new format will be used

This alert is displayed when your image contains something that GIMP cannot save into the old format, therefore the new version is needed. If you want to save the old format then you need to remove everything from your image that is too modern and impossible to store in an older format of *.xcf.

GIMP also tells what feature in the image is/are exactly the one/ones that make GIMP to use the newer version.

In the above picture, you can see that the layer mode setting is not compatible with the old format, therefore GIMP will use the new one.

In order to get rid of this message, you need to change the layer mode by right-clicking each layer, and change them in the Edit Layer Attributes -> Mode drop-down from Normal to Normal (l) or similar. The drop-down shows only the Default layer modes by default but if you click the little icon on the right side of the drop-down then you can switch to the Legacy layer modes.

Change here the set of the options in the drop-down list

If you try to save the *.xcf again then the above message disappears and the older version of *.xcf format will be used.

Maybe you still have some other settings in your image that are not compatible with the old file format. You need to hunt them down one-by-one but sooner or later you will be able to save in the older format.

GIMP version: GIMP 2.8.22

Operating System: Linux Mint 19.1 Cinnamon 4.0.10 kernel 4.15.0-112-generic

Package: aptitude

After a recent regular update I’m now receiving this error trying to open files I created last month on this system.

Reproduction

Is the bug reproducible? Always

Reproduction steps:

  1. Open Gimp
  2. File > Open > browse to any xcf created by this system

Expected result: File opens for edit

Actual result: Pop up error stating «XCF error: unsupported XCF file version 11 encountered»

Понравилась статья? Поделить с друзьями:
  • Ошибка xc0000005 windows 10
  • Ошибка xbox support
  • Ошибка xbox series s 0x87e5002b
  • Ошибка xbox live 8c150009
  • Ошибка xbox live 801540a9